我正在尝试使用jQuery Validate插件验证我的.aspx表单。我已经编写了验证函数,其中包含检查规则和显示错误消息的消息。
但即使在添加了所有必要的插件和函数调用之后,我的表单也没有得到验证。
任何人都可以指导我,如果我错了。
我在下面附上.aspx代码。
gsub
答案 0 :(得分:0)
而不是lblName或lblCity,它应该是txtName或txtCity。
rules: {
txtName: "required",
txtCity: "required",
},
// Specify the validation error messages
messages: {
txtName: "Please enter your Name",
txtCity: "Please enter your City",
},