博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
window.opener()方法
阅读量:6825 次
发布时间:2019-06-26

本文共 375 字,大约阅读时间需要 1 分钟。

<!DOCTYPE html>

<html>
<head>
<meta charset="GBK">
<title>菜鸟教程(runoob.com)</title>
<script>
function openWin(){
myWindow=window.open('','','width=200,height=100');
myWindow.document.write("<p>这是我的窗口</p>");
myWindow.focus();
myWindow.opener.document.write("<p>这个是源窗口!</p>");
}
</script>
</head>
<body>

<input type="button" value="打开我的窗口" οnclick="openWin()" />

</body>

</html>

转载地址:http://adgzl.baihongyu.com/

你可能感兴趣的文章