我有以下代码:
$.metadata.setType("attr", "validate");
$(document).ready(function(){
$("#form1").validate({
rules: {
$("#comment"): {
required: "#welcome:checked"
}
}, debug:true
});
$("#welcome").click(function() {
$("#comment").valid();
});
});
它仅在我输入文本区域的名称而不是 id 字段(代码行 5,#comment
)时才有效。如何通过 id 进行验证?