如何关闭jquery对话框

时间:2021-07-14 12:13:51

This is my code i open the page url into the dialog. now i want to close the dialog from the page default4.aspx that is actually inside the dialog..

这是我的代码我打开页面的URL进入对话框。现在我想从对话框中的页面default4.aspx关闭对话框。

In Default4.aspx there is button name close: now i want to close the dialog and also want pass some value to close function :

在Default4.aspx中有按钮名称关闭:现在我想关闭对话框并且还想要传递一些值来关闭函数:

 close: function(event,ui){
here:
  }

the code i used:

我使用的代码:

 $("#pop").load('Default4.aspx').dialog({
             height: 625,
             width: 600,
             modal:true,
             close: function(event,ui){


             //alert(event)
             //Check for Ok or cancle
             // if ok then do something

            // alert(ui);

             }
             }); 

Any Idea Guys How Can i do this..

任何想法的人我怎么能这样做..

1 个解决方案

#1


1  

Just call $("#pop").dialog("close"); in Default4.aspx

只需调用$(“#pop”)。dialog(“close”);在Default4.aspx中

For passing parametrs you can use input hidden element

对于传递参数,您可以使用输入隐藏元素

$("#hidden").val("my param value");   
<...> 
var param = $("#hidden").val();

#1


1  

Just call $("#pop").dialog("close"); in Default4.aspx

只需调用$(“#pop”)。dialog(“close”);在Default4.aspx中

For passing parametrs you can use input hidden element

对于传递参数,您可以使用输入隐藏元素

$("#hidden").val("my param value");   
<...> 
var param = $("#hidden").val();