您可以为对话框使用jQuery UI库。就这么简单
1)在页面/布局中添加对 jQuery UI 库的引用(来自CDN /LocalCopy的引用)
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js" type="text/javascript"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
2)向链接添加一个特定的类,以便我们可以将其用作 jQuery 选择器
@Html.ActionLink("Email", "Details", "Customers", null, new { @class = "popupLinks" })
3) 将 Diloag 功能绑定到 DOM 就绪事件上的那些链接
<script type="text/javascript">
$(function(){
$(".popupLinks").click(function (e) {
var url = this.href;
var dialog = $("#dialog");
if ($("#dialog").length == 0) {
dialog = $('<div id="dialog" style="display:hidden"></div>').appendTo('body');
}
dialog.load(
url,
{}, // omit this param object to issue a GET request instead a POST request, otherwise you may provide post parameters within the object
function (responseText, textStatus, XMLHttpRequest) {
dialog.dialog({
close: function (event, ui) {
dialog.remove();
},
modal: true,
width: 460, resizable: false
});
}
);
return false;
});
});
</script>
现在点击链接会显示控制器的Details
action方法的结果内容。Customers
(您可以根据自己的情况进行更改)