close()關(guān)閉窗口,語法書寫如下,其次使用close()在打開新窗口的同時(shí),關(guān)閉該窗口,是看不到被打開窗口的 1 window.close();//關(guān)閉本窗口 2 <窗口對(duì)象>.close();//關(guān)閉指定的窗口 代碼展示: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>JavaScript中window.open()與window.close()</title> 6 <script type="text/javascript"> 7 function myopen(){ 8 window.open('https://www.baidu.com/','_blank','width=300,height=200,left=0,meunbar=no,toolbar=no,scrollbar=yes,status=no'); 9 } 10 11 var ceshi=window.open('https://www.cnblogs.com/dhnblog/p/12494648.html')//將新打的窗口對(duì)象,存儲(chǔ)在變量ceshi中 12 // // ceshi.wondows.close() 錯(cuò)誤寫法 13 ceshi.close() 14 </script> 15 </head> 16 <body> 17 <input type="button" name="" id="" value="點(diǎn)擊打開新窗口" onclick="myopen()" /> 18 </body> 19 </html> 使用<窗口對(duì)象>.close();//關(guān)閉指定的窗口 代碼展示: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>通過變量關(guān)閉窗口</title> 6 <script type="text/javascript"> 7 function myopen(){ 8 var ceshi=window.open('https://www.baidu.com/','_blank','width=300,height=200,left=0,meunbar=no,toolbar=no,scrollbar=yes,status=no'); 9 ceshi.close() 10 } 11 </script> 12 </head> 13 <body> 14 <input type="button" name="" id="" value="我不信你可以打開" onclick="myopen()" /> 15 </body> 16 </html> 至于window.close();//關(guān)閉本窗口 暫時(shí)不是很懂,感興趣的可以參考下這個(gè),后期有機(jī)會(huì)在完善 ==修改時(shí)間2020/04/08/20:58 window.close();//關(guān)閉本窗口 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>JavaScript-關(guān)閉窗口(window.close)</title> 6 <script type="text/javascript"> 7 // window.close(); //關(guān)閉本窗口 8 // <窗口對(duì)象>.close(); //關(guān)閉指定的窗口 9 10 // window.open('http://www./','_blank','top=100,left=100,width=200,height=300,menubar=yes,toolbar=yes,status=no,scrollbars=yes'); 11 //window.close(); 12 13 var mywin=window.open('http://www./','_blank','top=100,left=100,width=200,height=300,menubar=yes,toolbar=yes,status=no,scrollbars=yes'); 14 // //將新打的窗口對(duì)象,存儲(chǔ)在變量mywin中 15 mywin.close(); 16 </script> 17 </head> 18 <body> 19 <p>上面代碼在打開新窗口的同時(shí),關(guān)閉該窗口,看不到被打開的窗口。</p> 20 </body> 21 </html> |
|