首页 > 代码库 > $(this).attr("checked") 用jquery取checkbox的值 返回undefined

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

$(this).attr("checked") 用jquery取checkbox的值 返回undefined