简单教程
提交运行
代码编辑器:
<script> function openWin(){ myWindow=window.open('',''); myWindow.document.write("<p>这是 “我的窗口”"); myWindow.document.write("<br>ScreenX: " + myWindow.screenX); myWindow.document.write("<br>ScreenY: " + myWindow.screenY + "</p>"); } </script> <input type="button" value="打开“我的窗口”" onclick="openWin()">
运行结果: