任何人都可以告訴我如何在asp.net嵌套的masterpage中使用jquery。我有我的主要頁面,我已經添加了鏈接到jQuery的libaray和驗證框架。然後我創建了另一個帶有一些樣式的主頁,並基於該主頁創建了一個aspx頁面。使用jQuery與嵌套的主頁
如何將驗證框架附加到我的頁面中的文本框?
我已經試過
$("#aspnetForm").validate({
rules: {
<%=txtPostCode.UniqueID %>: {
minlength: 2,
required: true
},
<%=txtContactEmail.UniqueID %>: {
required: true,
email:true
}
}, messages: {
<%=txtPostCode.UniqueID %>:{
required: "* Required Field *",
minlength: "* Please enter atleast 2 characters *"
}
}
});
但是什麼也沒有發生。任何人都可以將我指向正確的方向嗎?