$(this).attr("checked") 用jquery取checkbox的值 返回undefined
$("#login-showpassword").click(function(){
//$(this).attr("checked") 这个返回undefined
//this.checked; 返回true
if($(this).is(":checked")) {
$("#text-password").val($("#login-password").val());
$("#text-password").show();
$("#login-password").hide();
} else {
$("#login-password").val($("#text-password").val());
$("#login-password").show();
$("#text-password").hide();
}
});
设值
attr("checked","checked"); // 这种方式没有效果。
.prop("checked", true);
f($(this).prop("checked", true);