ex12-6.htm

来自「有关JAVASCRIPT的源代码教程」· HTM 代码 · 共 30 行

HTM
30
字号
    <html><head><title>focus()方法演示 </title>
    <script language="JavaScript">
    <!--  
        var winObj;
        function newWindow(){
            winObj=window.open("fish.jpg",
            "summer","width=400,height=300,resizable=yes,scrollbars=yes");
            winObj.moveTo(0,0);   //将窗口移动到屏幕左上角
            winObj.focus();       
        }
        function closeWindow(){
            winObj.close();      
        }
    //   -->
    </script>
    </head>
    <body bgColor="lightgrey">
    <h2>海洋风光 </h2>
    <form>
        <input type=button
            value="打开窗口并得到焦点"
            onClick="newWindow();">
        <input type=button
            value="关闭窗口"
            onClick="closeWindow();">
    </form>
    </body>
    </html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?