欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

HTML如何关闭当前网页

程序员文章站 2022-05-25 09:13:57
...
本片文章主要介绍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>

相关推荐:

js实现关闭网页的代码

HTML关闭网页弹出窗口代码_html/css_WEB-ITnose

不提示直接关闭网页窗口的JS示例代码_javascript技巧

以上就是HTML如何关闭当前网页的详细内容,更多请关注其它相关文章!