本片文章主要介紹html如何關閉目前網頁以及滑鼠特效,希望可以幫到大家。
#程式碼:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script type="text/javascript"> function shut(){ window.opener=null; window.open('','_self'); window.close(); } </script> </head> <body> <br><br><br> <center><input type="button" name="Submit2" value="关闭窗口" title="关闭窗口" onclick="shut()"/> </center> </body> </html>
相關推薦:
HTML關閉網頁彈出視窗程式碼_html/css_WEB-ITnose
不提示直接關閉網頁視窗的JS範例程式碼_javascript技巧
以上是HTML如何關閉目前網頁的詳細內容。更多資訊請關注PHP中文網其他相關文章!