子页面赋值给父页面:window.opener.document.getElementById
生活随笔
收集整理的這篇文章主要介紹了
子页面赋值给父页面:window.opener.document.getElementById
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
window.opener 返回的是創(chuàng)建當前窗口的那個父窗口的引用,比如點擊了a.htm上的一個鏈接而打開了b.htm,然后我們打算在b.htm上輸入一個值然后賦予a.htm上的一個id為“name”的textbox中,就可以寫為:indow.opener.document.getElementById("name").value = "輸入的數(shù)據(jù)";
1.頁面代碼:
<label> <input type="text" name="textfield" id="textfield" /></label></form> </body> </html>
?
2.子頁面代碼:
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標題文檔title> head> <script language="javascript"> function aaa() {window.opener.document.getElementByIdx('textfield').value='123123123'; } script> <body><form id="form1" name="form1" method="post" action=""><label> <input type="submit" name="button" id="button" value="提交"onclick="aaa()" /> label>form> </body> </html>?
轉(zhuǎn)載于:https://www.cnblogs.com/shuilangyizu/p/11356802.html
總結(jié)
以上是生活随笔為你收集整理的子页面赋值给父页面:window.opener.document.getElementById的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python基础--GIL全局解释器锁、
- 下一篇: OpenCV计算机视觉实战(Python