首页 > 代码库 > 解决window.open传值的问题
解决window.open传值的问题
1.html
<script type="text/javascript"> function showItem() { var win = window.open("2.html",null," height=300,width=450, Left=300px,Top=20px, menubar=no,titlebar=no,scrollbar=no,toolbar=no, status=no,location=no"); } </script> <input type="button" id="txtId"/> <input type="button" id="txtName"/> <input type="button" id="btnShow" onclick="showItem();" value="显示子窗体"/>
2.html
<script language="javascript" type="text/javascript"> function check() { window.opener.document.getElementById("txtId").value="ID"; window.opener.document.getElementById("txtName").value="NAME"; } </script> <input type="button" id="btnSelect" onclick="check()" value="选择"/>
解决window.open传值的问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。