博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[轉]jQuery UI 关闭父窗口打开的Dialog
阅读量:6210 次
发布时间:2019-06-21

本文共 713 字,大约阅读时间需要 2 分钟。

From :

 

父窗口中定义了如下的div和iframe

<div class="hide" style="overflow: hidden;" id="divdialog">

      <iframe src="" style="width: 100%; border: 0px; height: 100%; overflow:hidden;" allowtransparency="true" frameborder="0" scrolling="no"></iframe>
</div>

 

<tr id="<%#Eval("ID")%>" οndblclick="showDialog('XXX', '/child.aspx',800,685, function() { document.location.reload(); })">

 

// 打开Dialog

function showDialog(title, url, width, height, close) {

  $("#divdialog iframe").attr("src", url);
  $("#divdialog").dialog({ modal: true, title: title, width: width, height: height, show: 'fade', hide: 'fade', resizable: false, close: close });
}

 

 

在子窗口中调用如下的js进行关闭这个弹出的jquery ui dialog

window.parent.$("#divdialog").dialog("close");

 

Baidu :

转载地址:http://ekdja.baihongyu.com/

你可能感兴趣的文章
Centos安装Consul微服务
查看>>
Ubuntu16下Hadoop安装
查看>>
写个自动安装JDK的shell脚本
查看>>
Cocos Creator 初探:修改Engine来调整FPS信息显示
查看>>
2015.4.16-SQL-内连接与外连接
查看>>
Java实现几种常见排序方法
查看>>
win7(windows 7)系统下安装SQL2005(SQL Server 2005)图文教程
查看>>
Android屏幕底部弹出DialogFragment(3)
查看>>
.Net主线程扑捉子线程中的异常
查看>>
图解SQL的inner join、left join、right join、full outer join、union、union all的区别
查看>>
VBA 打开excel
查看>>
leetcode之Remove Duplicates from Sorted List II
查看>>
JSP去空白行
查看>>
【216】◀▶ IDL 字符串操作说明 (黑底)
查看>>
【326】PIL 截图及图片识别
查看>>
jquery中odd和even选择器的用法说明
查看>>
axios 拦截 , 页面跳转, token 验证
查看>>
Windows XP硬盘安装Ubuntu 12.04双系统图文详解
查看>>
Last Position of Target
查看>>
和我一起来学iOS(一)ObjectC的语法
查看>>