window.open被浏览器拦截的解决方案
Posted hupan508
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.open被浏览器拦截的解决方案相关的知识,希望对你有一定的参考价值。
function newWin(url, id) { var a = document.createElement(‘a‘); a.setAttribute(‘href‘, url); a.setAttribute(‘target‘, ‘_blank‘); a.setAttribute(‘id‘, id); // 防止反复添加 if(!document.getElementById(id)) document.body.appendChild(a); a.click(); }
http://zakwu.me/2015/03/03/dan-chu-chuang-kou-bei-liu-lan-qi-lan-jie-de-jie-jue-fang-an/
以上是关于window.open被浏览器拦截的解决方案的主要内容,如果未能解决你的问题,请参考以下文章
window.open(url)新窗口打开链接被浏览器拦截解决方案