function init_dialog(url,getDispatch,title){ debugger; //弹框的url url = $.acooly.framework.buildCanonicalUrl(url, null); var saveBtn = { id: 'loading-port-select-btn', text: '<i class="fa fa-lg fa-fw fa-col fa-check" ></i>确定', handler: function () { if (typeof getDispatch === 'function') { getDispatch(); } } }; var closeBtn = { text: '<i class="fa fa-times-circle fa-lg fa-fw fa-col" ></i>关闭', handler: function () { d2.dialog('close'); } }; var buttons = buttons || []; buttons.push(saveBtn); buttons.push(closeBtn); var d2 = null; freightOrUserdialog = d2 = $("<div/>").dialog({ top: null, title :title, iconCls : 'icon-edit', modal : true, width : 800, height : 500, closed : true, buttons : buttons, href: url, onClose : function() { $(this).dialog('destroy'); } }); freightOrUserdialog.dialog("open"); }如何将freightOrUserdialog当参数传递
时间: 2024-02-10 20:14:30 浏览: 86
msg_www.//2020msg.com_Free!_msg.marriott.com_Vc_
您可以将 `freightOrUserdialog` 作为参数传递给 `init_dialog` 函数,例如:
```
function someFunction(dialog) {
// 在这里可以使用传递进来的 dialog 参数
}
init_dialog(url, getDispatch, title, freightOrUserdialog);
```
在上面的示例中,我们将 `freightOrUserdialog` 作为第四个参数传递给 `init_dialog` 函数,然后在需要使用它的函数 `someFunction` 中接收它作为参数。这样,您就可以在 `init_dialog` 函数外部访问 `freightOrUserdialog` 变量,并将它作为参数传递给其他函数。
阅读全文