关于window.open弹出窗口被阻止的问题 (2)

由于在使用window.open时,在很多情况下,弹出的窗口会被浏览器阻止,但若是使用a链接target=\'_blank\',则不会,基于这一特点,自己封装了一个open方法:

function openwin(url) {
var a = document.createElement("a");
    a.setAttribute("href", url);
    a.setAttribute("target", "_blank");
    a.setAttribute("id", "openwin");
    document.body.appendChild(a);
    a.click();
}

调用方式如下:

<input type="button" value="百度" />

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zwwyxs.html