js实现window.open不被拦截的解决方法汇总
本文实例讲述了js实现window.open不被拦截的解决方法。分享给大家供大家参考。具体分析如下:
一、问题:
今天在处理页面ajax请求过程中,想实现请求后打开新页面,就想到通过jswindow.open来实现,但是最终都被浏览器拦截了。
二、分析:
在谷歌搜索有没有解决方法,有些说可以通过新建a标签,模拟点击来实现,但是测试发现都实现不了,照样被浏览器拦截。
最后找到了一个折中的办法,可以实现新页面打开,但是没有a标签的那种直接流量新页面的效果。
三、实现代码:
$obj.click(function(){ varnewTab=window.open('about:blank'); $.ajax({ success:function(data){ if(data){ //window.open('https://www.nhooo.com'); newTab.location.href="https://www.nhooo.com"; } } }) })
其它方法:
<scripttype="text/javascript"> <!-- $( function() { //方法一 window.showModalDialog("https://www.nhooo.com/"); window.showModalDialog("https://www.nhooo.com/");
//方法二 varaa=window.open(); setTimeout(function(){ aa.location="https://www.nhooo.com"; },100);
varb=window.open(); setTimeout(function(){ b.location="https://www.nhooo.com"; },200);
varc=window.open(); setTimeout(function(){ c.location="https://www.nhooo.com"; },300);
vard=window.open(); setTimeout(function(){ d.location="https://www.nhooo.com"; },400);
varee=window.open(); setTimeout(function(){ ee.location="https://www.nhooo.com"; },500);
varf=window.open(); setTimeout(function(){ f.location="https://www.nhooo.com"; },600);
varg=window.open(); setTimeout(function(){ g.location="https://www.nhooo.com"; },700);
varh=window.open(); setTimeout(function(){ h.location="https://www.nhooo.com"; },800);
vari=window.open(); setTimeout(function(){ i.location="https://www.nhooo.com"; },900);
varj=window.open(); setTimeout(function(){ j.location="https://www.nhooo.com"; },1000);
//方法三 vara=$("<ahref='https://www.nhooo.com'target='_blank'>Apple</a>").get(0); vare=document.createEvent('MouseEvents'); e.initEvent('click',true,true); a.dispatchEvent(e);
vara=$("<ahref='https://www.nhooo.com'target='_blank'>Apple</a>").get(0); vare=document.createEvent('MouseEvents'); e.initEvent('click',true,true); a.dispatchEvent(e); } ); //--> </script>