`
罗佳林0315
  • 浏览: 11076 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论

关闭窗口,解决window.close()失效

js 
阅读更多


function f_close(){
if(typeof(WeixinJSBridge)!="undefined"){
WeixinJSBridge.call('closeWindow');
}else{
if(navigator.userAgent.indexOf("MSIE") > 0) {
if (navigator.userAgent.indexOf("MSIE 6.0") >0) {
window.opener = null; window.close();
}
else {
window.open('', '_top'); window.top.close();
}
}
else if(navigator.userAgent.indexOf("Firefox") > 0) {
window.location.href = 'about:blank ';
//window.history.go(-2);
}
else {
window.opener = null;
window.open('', '_self', '');
window.close();
}
}
}

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics