我想显示一个确认对话框“你确定吗?”当用户单击提交按钮时,仅当客户端验证(使用MVC3验证属性创建)已通过时才应显示此确认对话框。但事件发生之前是:
$("#submitbutton").click(function () {
if (confirm("The overall rating is less than 3. Are you sure you want to submit the PEMS?")) {
return true;
}
return false;
});
我该如何解决这个问题?
答案 0 :(得分:1)
找到答案:
我们需要像这样使用$(formselector).valid():
if ($('#myform').valid()) {
// do whatever you want here
}