中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

Javascript 兩個窗體之間傳值實現代碼

如我們新建窗體FatherPage.htm:
XML-Code:
復制代碼 代碼如下:
<script type="text/Javascript">
function OpenChildWindow()
{
window.open('ChildPage.htm');
}
</script>
<input type="text" id="txtInput" />
<input type="button" value="OpenChild" onclick="OpenChildWindow()" />

然后在ChildPage.htm中即可通過window.opener來訪問父窗體中的元素:
XML-Code:
復制代碼 代碼如下:
<script type="text/Javascript">
function SetValue()
{
window.opener.document.getElementById('txtInput').value
=document.getElementById('txtInput').value;
window.close();
}
</script>
<input type="text" id="txtInput" />
<input type="button" value="SetFather" onclick="SetValue()" />

其實在打開子窗體的同時,我們也可以對子窗體的元素進行賦值,因為window.open函數同樣會返回一個子窗體的引用,因此FatherPage.htm可以修改為:
XML-Code:
復制代碼 代碼如下:
<script type="text/Javascript">
function OpenChildWindow()
{
var child = window.open('ChildPage.htm');
child.document.getElementById('txtInput').value
=document.getElementById('txtInput').value;
}
</script>
<input type="text" id="txtInput" />
<input type="button" value="OpenChild" onclick="OpenChildWindow()" />

通過判斷子窗體的引用是否為空,我們還可以控制使其只能打開一個子窗體:
XML-Code:
復制代碼 代碼如下:
<script type="text/Javascript">
var child
function OpenChildWindow()
{
if(!child)
child = window.open('ChildPage.htm');
child.document.getElementById('txtInput').value
=document.getElementById('txtInput').value;
}
</script>
<input type="text" id="txtInput" />
<input type="button" value="OpenChild" onclick="OpenChildWindow()" />

光這樣還不夠,當關閉子窗體時還必須對父窗體的child變量進行清空,否則打開子窗體后再關閉就無法再重新打開了:
XML-Code:
復制代碼 代碼如下:
<body onunload="Unload()">
<script type="text/Javascript">
function SetValue()
{
window.opener.document.getElementById('txtInput').value
=document.getElementById('txtInput').value;
window.close();
}
function Unload()
{
window.opener.child=null;
}
</script>
<input type="text" id="txtInput" />
<input type="button" value="SetFather" onclick="SetValue()" />
</body>

JavaScript技術Javascript 兩個窗體之間傳值實現代碼,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 一级做受毛片免费大片 | 欧美涩| 天堂影院av | 婷婷午夜天 | 男女国产网站 | 日韩av在线免费 | 在线观看中文字幕av | 亚洲国产精品99久久久久久久久 | 国产精品乱码一区二区三区 | 国户精品久久久久久久久久久不卡 | 在线观看免费高清av | 欧美成人免费在线视频 | 99久久精品国产麻豆演员表 | 久久精品毛片 | 国产一区二区三区精品久久久 | 99久久久无码国产精品 | 精品一二区 | 免费观看一级特黄欧美大片 | 精品久久久久久一区二区 | 免费a网| 国产美女视频 | 高清欧美性猛交 | 婷婷激情在线 | 日韩在线免费 | 日本精品视频 | 超碰地址| 天堂色区| 色视频一区二区 | 美女国内精品自产拍在线播放 | 欧美日韩一区二区三区视频 | 成人精品在线观看 | 成年人视频在线免费观看 | 天天操天天摸天天干 | 久久久www成人免费无遮挡大片 | 国产精品毛片无码 | 欧美日韩国产三级 | 欧美日韩国产在线 | 一区二区在线视频 | 国产精品综合久久 | 九九热国产视频 | 欧美日韩亚洲在线 |