我在 ASP.net MVC4 中为我的 Web 应用程序使用jQuery 工具验证器。我正在尝试使用验证器验证下拉框但没有成功。
我已经解决了这个问题,但它并没有解决我的问题。
我的代码如下。
$.tools.validator.fn("select[required=required]", function(input, value) {
// If the first item in the list is selected return FALSE
alert("Inside required of dropdown");
if(input[0].options[0].selected)
{
alert("returning false");
en: "Please select value from this drop down"
}
else
{
alert("returning true");
return true;
}
});
它确实会提醒所有警报,但不会在错误时显示错误消息,而是在选择元素时会触发所选项目的值作为验证消息。
任何帮助都会得到帮助。