码迷,mamicode.com
首页 > 其他好文 > 详细

弹窗添加数据后实现父级页面同步添加

时间:2016-11-14 15:48:18      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:screen   获取   标签   弹窗   list   image   ble   cti   turn   

弹窗:

function openUrl() {
var iWidth = 800;
var iHeight = 600;
return window.open(‘<%= Application["rootURL"] %>AP_ImageIndexing/Indexing/AddPo.aspx‘, ‘AddPO‘, ‘width=‘ + iWidth + ‘,height=‘ + iHeight + ‘, top=‘ + (screen.height - iHeight) / 2 + ‘, left=‘ + (screen.width - iWidth) / 2 + ‘,resizable=1,scrollbars=1‘);
}

数据回调:

//获取并设置父级元素,这种是asp.net获取ID的方式
$("[id$=add_polist_value]", window.opener.parent.document).val(value2);

 

原理:在父级页面设置一个隐藏标签,子页面获取该ID并赋值,这样就完成了子页面向父级页面通信。

父页面给子页面传值一般通过URL地址附带!

 

子页面完成操作后父页面刷新:

window.opener.parent.document.forms[0].submit();

弹窗添加数据后实现父级页面同步添加

标签:screen   获取   标签   弹窗   list   image   ble   cti   turn   

原文地址:http://www.cnblogs.com/it-xcn/p/6061718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!