早上好。
我有一个模态 JQuery 对话框,它在打开时调用并加载部分视图。很好的例子可以在这里看到https://stackoverflow.com/a/4802423/1193841但我会重新粘贴:
<script type="text/javascript">
$(function () {
$('#dialog').dialog({
autoOpen: false,
width: 400,
resizable: false,
title: 'hi there',
modal: true,
open: function(event, ui) {
//Load the CreateAlbumPartial action which will return
// the partial view _CreateAlbumPartial
$(this).load("@Url.Action("CreateAlbumPartial")");
},
buttons: {
"Close": function () {
$(this).dialog("close");
}
}
});
$('#my-button').click(function () {
$('#dialog').dialog('open');
});
});
在我的例子中,ActionMethod "CreateAlbumPartial" 采用一个 ID 参数,该参数是从另一个页面传递的 onclick="" 事件。
如上所示,如何使该 Id 在被调用时传递给 ActionMethod?就像是
$('#dialog').dialog('open',Id)
会很棒,但我不认为这就是它的工作原理。
PS 现在我通过 $.post() 将 .html(data) 加载到 div 然后在 .show().dialog('open') 中显示该 DIV 来显示我的弹出窗口。但是,与其分别调用我的 Action 方法和 Dialog 相关的东西,我真的很想按照我要求将所有逻辑保存在一个地方的方式重新执行它。
先感谢您。