这个方法是在朋友发的微博上看到的,非原创。版权和思路归原作者@beta所有~
如果我们在使用window.close的时候,IE下会出现这样的提示,告知用户是否确认关闭当前的网页(如下图所示)
如果用户点击“否”,则当前页面是不会被关闭的。
代码并不复杂,但思路很新颖^_^
<!DOCTYPE html> <html> <head> <title>不需要用户确认关闭当前页面</title> <meta name="generator" content="editplus" /> <meta name="author" content="" /> <meta name="keywords" content="" /> <meta name="description" content="" /> <meta http-equiv='content-type' content='text/html; charset=utf-8' /> </head> <body> <button onclick="closeHandler()">关闭网页</button> </body> </html> 预览代码