您好,登錄后才能下訂單哦!
<html>
<head>
<title>1.html</title>
<script type="text/javascript">
function test() {
//彈出一個新窗口2.html
window.open ('2.html')
}
</script>
</head>
<body>
<input name="mytext" type="text" value="父頁面的值" />
<input type="submit" name="Submit" value="打開新窗口" onclick="test();" />
</body>
</html>
=====將上面和下面代碼分別保存為1.html和2.html,放置在同一目錄下==================
<html>
<head>
<title>2.html</title>
<script language="JavaScript">
function loading() {
//獲取父頁面控件“mytext”的值傳遞給本頁面的控件“mytext2”
document.getElementById('mytext2').value = self.opener.document.getElementById('mytext').value;
}
</script>
</head>
<body onLoad="loading();">
<form action=search.php name="form">
父頁面的值:<input name="mytext2" type="text">
</form>
</body>
</html>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。