zfxcms ^回到顶部

您的当前位置:首页 > web资讯 > JS > window.opener和window.open

window.opener和window.open

所属分类: JS   2022-03-23 10:38:15  编辑:admin  浏览次数 729 次

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<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="打开我的窗口" onclick="openWin()" />


</body>

</html>


Web文章检索

Web文章目录