首页 > 网站 > WEB开发 > 正文

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

2024-04-27 15:13:38
字体:
来源:转载
供稿:网友
 今天遇到一个这样的问题,点击按钮查询第三方保全合同的时候会返回一个半小时之内有效的链接,然后我用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);  }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表