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

</body>
</html>

相关文章:

  • 2022-12-23
  • 2021-04-14
  • 2022-12-23
  • 2021-08-01
  • 2022-12-23
  • 2022-02-17
  • 2022-03-07
猜你喜欢
  • 2022-12-23
  • 2021-07-21
  • 2021-09-23
  • 2021-08-02
相关资源
相似解决方案