Loading, please wait...

Saturday, December 22, 2007

不经确认直接关闭浏览器的新方法

写脚本时不小心发现了一个新的不经过确认直接关闭窗口的方法不过还是ie-only.而且,此方法有个非常恐怖的地方,它还是单纯关闭窗口,而是关闭整个浏览器,ie7(无论多少实例),还有maxthon都不能幸免于难.
在我机子上是这样的, 别的机子就不得而知了,麻烦大家给看看, 是否通用.

OS(en):Microsoft Windows XP Professional Version 2002 Service Pack 2
IE(en): Version: 7.0.5730.13

<script>
document.onclick = function() {
closeWin(event.srcElement);
}
function closeWin(o) 
{
var aElm = document.createElement('a');
aElm.href = o.href;
var imgEml = document.createElement('img');
aElm.appendChild(imgEml);
document.body.appendChild(aElm);
aElm.click();
}
</script>
<input type="button" onclick="closeWin(this);return false;" value="关闭窗口">

转载声明: 出自: Ghoul To World!作者: GreatGhoul

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.