0

我正在使用 Jquery UI Dialog 小部件以及 load 命令在对话框中打开现有的 aspx 页面

我的代码加载 aspx 页面就好了。

$('#divCancelInspection').load('WOCancel.aspx').dialog({ /*properties specified*/ });

在我的 WOCancel.aspx 页面中,我有两个按钮,我希望将值返回到调用页面。

在我的 WOCancel.aspx

 $(document).ready(function() {      
   $('#btnCancelInspection').click(function() { /* return a value */ }); 
});

所以现在我很难过的是如何将值返回到创建对话框的主页面。


现在附带说明一下,我知道在我的对话框中设置的属性可以指定按钮。但我想知道是否有像我上面指定的不同方式?否则我会使用类似下面的东西......

dialog({
 buttons: {
  'save': function() {/* code to find control value within dialog and use it*/ }, 
  Cancel: function () { /* close the dialog window */}
 }
});
4

1 回答 1

0

我最终只使用了第二种方法

现在附带说明一下,我知道在我的对话框中设置的属性可以指定按钮。但我想知道是否有像我上面指定的不同方式?否则我会使用类似下面的东西......

dialog({
 buttons: {
  'save': function() {/* code to find control value within dialog and use it*/ }, 
  Cancel: function () { /* close the dialog window */}
 }
});
于 2013-09-24T13:05:18.153 回答