javascript關閉瀏覽器的方法:1、透過「 function CloseWebPage(){...}」方法實作關閉瀏覽器網頁;2、透過「open(location, '_self').close() ;」方法關閉瀏覽器網頁。
本文操作環境:windows7系統、javascript1.8.5版、Dell G3電腦。
js實作關閉瀏覽器
相容於所有瀏覽器網頁關閉方法
<button id="exitSystem" onclick="CloseWebPage()">关闭</button> <script> function CloseWebPage() { if (navigator.userAgent.indexOf("MSIE") > 0) { if (navigator.userAgent.indexOf("MSIE 6.0") > 0) { window.opener = null; window.close(); } else { window.open('', '_top'); window.top.close(); } } else if (navigator.userAgent.indexOf("Firefox") > 0) { window.location.href = 'about:blank '; //火狐默认状态非window.open的页面window.close是无效的 //window.history.go(-2); } else { window.opener = null; window.open('', '_self', ''); window.close(); } } </script>
第二種方法,也可以針對Google瀏覽器的
<button style="margin-left: 500px" onclick="CloseWebPage()">退出</button> <script> function CloseWebPage() { open(location, '_self').close(); } </script>
【推薦學習:javascript高階教學】
以上是javascript怎麼關閉瀏覽器的詳細內容。更多資訊請關注PHP中文網其他相關文章!