http://topic.csdn.net/u/20091123/11/5aad90de-83e0-4518-8a53-57f16ddf0c85.html
JScript code<script language="javascript">
window.open('','_top');
window.top.close();</script>
包含iframe的页面关闭window.top.close();
http://my.oschina.net/shizhoubo/blog/2877
//是否是IE浏览器
if(navigator.userAgent.indexOf("MSIE")>0){
if(navigator.userAgent.indexOf("MSIE 6.0")>0){//IE6
window.top.opener=null;
window.top.open("","_self");
window.top.close();
}else if(navigator.userAgent.indexOf("MSIE 7.0")>0){//IE7
window.open('','_top');
window.top.close();
}else{//其他IE版本
window.open('','_top');
window.top.close();
}
}else{//不是IE浏览器
window.top.open('','_top');
window.top.close();
}
分享到:
相关推荐
<body onload="window.resizeTo(window.screen.width - 4,window.screen.height-50);window.moveTo(-4,-4)"> 无关闭按钮IE window.open("aa.htm", "meizz", "fullscreen=7"); 统一编码/解码 alert...
这段代码监听键盘按键事件,当用户按下Shift键时会弹出一个警告框提示。这对于检测用户是否按下了某些特定的键很有帮助。 ### 11. 禁止缓存 ```html , must-revalidate"> , 26 Feb 1997 08:21:57 GMT"> ``` 这些...
-Window的实例方法GetCloseReference等以及ActiveWindow的静态方法GetCloseReference等,其中的Close全部改为Hide。 -增加TabStrip中Tab控件可关闭属性EnableClose(默认为false)以及两个方法GetShowReference和...
具体来说,需要通过`parent.layer.getFrameIndex(window.name)`获取当前窗口的索引值,然后使用`parent.layer.close(index)`方法来关闭。这里的`index`参数代表了弹层窗口的索引,它是由layer自动管理的。每打开一个...
-Window的实例方法GetCloseReference等以及ActiveWindow的静态方法GetCloseReference等,其中的Close全部改为Hide。 -增加TabStrip中Tab控件可关闭属性EnableClose(默认为false)以及两个方法GetShowReference和...
4. **循环提示框** - 语法:`<script LANGUAGE="javascript">function loopy(){var sWord="";while(sWord!="登录"){sWord=prompt("请输入用户名");}alert("登录成功");}loopy()</script>` - 示例:`...
#### 二十四、循环提示框 - **语法**:`<script LANGUAGE="javascript">function loopy(){...}</script>` - **示例**:`<script LANGUAGE="javascript">function loopy(){...}</script>` - **解析**:通过JavaScript...
- **作用**:循环弹出提示框,直到用户输入指定的信息为止。 - **示例**:`<script>function loopy() {var sWord = ""; while (sWord != "login") {sWord = prompt("请输入登录信息");} alert("登录成功");}...