解决window.open被浏览器拦截的问题

 今天遇到一个这样的问题,点击按钮查询第三方保全合同的时候会返回一个半小时之内有效的链接,然后我用window.open打开新页面
有些客户反馈说点击后根本打不开,window.open被拦截了 



function newWin(url) { 
      var a = document.createElement('a');  
      a.setAttribute('href', url);
      a.setAttribute('style', 'display:none');  
      a.setAttribute('target', '_blank');  
      document.body.appendChild(a);
      a.click();
      a.parentNode.removeChild(a);  
}


你可能感兴趣的:(js)