parent.dialogArguments兼容问题

if (window.ActiveXObject){//IE浏览器
window.parent.dialogArguments.feedbak.ProjectID.value=v;
window.parent.dialogArguments.feedbak.ProjectNO.value=t;
window.parent.dialogArguments.feedbak.ProjectName.value=m;
window.close();
}else{
opener.window.feedbak.ProjectID.value=v;
opener.window.feedbak.ProjectNO.value=t;
opener.window.feedbak.ProjectName.value=m;
window.close();
}

时间: 2024-11-26 00:27:21

parent.dialogArguments兼容问题的相关文章

artDialog4.1.7 摘自网络

jquery.artDialog.source.js学习 1 关键的对象关系 art = jQuery = $ function artDialog() {...} artDialog.fn = artDialog.prototype = artDialog.fn._init.prototype jQuery.fn = jQuery.prototype = jQuery.fn.init.prototype jQuery.extend = jQuery.fn.extend $.fn.dialog

JS刷新窗口的几种方式

浮层内嵌iframe及frame集合窗口,刷新父页面的多种方法 <script language=JavaScript> parent.location.reload(); </script> <script language=JavaScript> parent.location.reload(); </script> 弹出子页面 <script language=JavaScript> window.opener.location.reloa

总结JS实现页面的刷新和跳转

使用iframe.弹出子页面刷新父页面iframeparent.location.reload(); 弹出子页面window.opener.location.reload();--这个方法是我尝试过的,可以成功实现我想要的功能,其他的没有尝试,不能保证绝对的正确. 子窗口刷新父窗口 self.window.opener.locaction.reload(); 刷新一open()方法打开的窗口 window.opener.location.href = window.opener.location

利用js刷新页面的方法大全

首先是刷新本页面,这个最简单,方法有以下几种: 1,history.go(0) 2,location.reload() 3,location=location 4,location.assign(location) 5,document.execCommand('Refresh') 6,window.navigate(location) 7,location.replace(location) 8,document.URL=location.href 调用就像样子的:onclick="windo

刷新页面Js

简单回答:自己看,不再赘述 用iframe.弹出子页面刷新父页面iframe parent.location.reload();弹出子页面 window.opener.location.reload();子窗口刷新父窗口 self.window.opener.locaction.reload();刷新一open()方法打开的窗口 window.opener.location.href = window.opener.location.href刷新以winodw.showModelDialog()

JavaScript 弹出窗口总结

1: window.open <!-- window.open('page.html', 'newwindow', 'height=100, width=400, top=0,left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no') //写成一行 --> 参数解释: window.open 弹出新窗口的命令: 'page.html' 弹出窗口的文件名: 'newwindow' 弹出窗

javascript刷新父页面方法总结

用iframe.弹出子页面刷新父页面iframe Js代码   <script language=JavaScript> parent.location.reload(); </script> 弹出子页面 Js代码   <script language=JavaScript> window.opener.location.reload(); </script> 子窗口刷新父窗口 Js代码   <script language=JavaScript>

基于AD的用户组织目录树选择工具的解决方案

基于AD的用户组织目录树选择工具的解决方案 2009-03-06 11:00 by Virus-BeautyCode, 1675 阅读, 5 评论, 收藏, 编辑 本文的需求来自进来SharePoint开发中的人员选择,基础中国的用户更加喜欢通过组织结构来选择人员,这样可以清晰的知道选择人员的部门,通过组织结构选择人员是本文的讨论点. 我也是集合了前人的思路,进行了整合,参考了下面的博客 基于AD的用户组织目录树选择工具的解决方案http://blog.lickies.cn/Lists/Post

JS刷新父窗口的几种方式

浮层内嵌iframe及frame集合窗口,刷新父页面的多种方法 <script language=JavaScript> parent.location.reload(); </script> <script language=JavaScript> parent.location.reload(); </script> 弹出子页面 <script language=JavaScript> window.opener.location.reloa