使用jQuery UI Dialog动态生成一个对话框,使用jQuery.validate是实现验证。
MVC Control
public ActionResultCreate()
{
return PartialView();
}
MVC View代码
@model NetworkGrain.Models.Action
javascript代码
$.ajax({
type: "GET",
url: "/Action/Create",
cache: false,
global: false,
success: function (data) {
var dlg = $(data);
dlg.dialog({
title: "添加权限",
modal: true,
buttons: {
"确定": function () {
if ($("#create").validate().form() == true) { //手动验证
alert("OK");
}
},
"关闭": function () {
$(this).dialog("close");
}
}
});
}
});