IE7的不提示关闭窗口的例子

 IE7的不提示关闭窗口的例子:

<script>
function Close()
{
  window.open('','_top');
  window.top.close();
  window.open("http://www.sina.com","","");
}
</script>

<body onunload="Close()" >sdfsdf
</body>

你可能感兴趣的:(function,IE)