为什么验证在这里不起作用?我有一个链接,单击该链接会打开一个从部分视图加载其内容的对话框。我想在单击对话框上的按钮时验证表单。我在布局文件中加载验证脚本。
$dialog = $<'<div></div>');
$('.linkClass').click(function (e) {
e.preventDefault();
$.ajax({
url: this.href,
type: "GET",
success: function (result) {
$dialog.load(this.url).dialog({
resize: "auto",
width: 490,
height: 430,
modal: true,
buttons: {
Save: function () {
if ($dialog.find('form:first').valid()) {
$.ajax({
url: "/Home/Dates",
type: "POST",
data: $('form').serialize(),
datatype: "html",
success: function (result) {
$dialog.dialog('close');
},
error: function (xhr, testStatus, error) {alert("Error occured: " + error + " " + xhr + " " + testStatus) }
});*/
}
else { alert("Please correct the errors on the form") }
},
Cancel: function () {
$(this).dialog("close");
}
}
});
$.validator.unobtrusive.parse($dialog.find('form:first').valid());
$dialog.dialog('open');
},
error: function (request, status, error) {
alert(request.responseText);
}
});
});
但是,这不起作用。我可以看到我的验证脚本已正确加载。此外,当我在对话框中加载的局部视图中添加脚本时,验证效果很好。为什么呢?为什么我需要在两个地方加载这些脚本?