jQuery 验证在我用来验证表单的代码中不起作用。
我使用了 PureMVC,并在 index.html 文件中使用了从 ajax 请求加载的contact.html 文件。如果我在单击按钮时发出 javascript 警报,那么我可以看到它们,但它们不会在单击按钮时进行任何验证
$("#contactUsSubmit").live('click', function() {
$("#contactForm").validate({
errorLabelContainer: $("#contactAlert ul"),
rules: {
contactName: {
required: true,
minlength: 6
}
}
});
});
有人知道我在这段代码中做错了什么。#contactname 是 contactName 的 ID