$(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);

 

posted @ 2014-09-01 11:21  廖东海  阅读(658)  评论(0编辑  收藏  举报