在chrome中打开用户事件的多个标签

时间:2014-11-20 12:12:23

标签: javascript google-chrome underscore.js

我想在chrome中打开多个标签,让用户下载多个文件(不是.zip)已经使用underscore.js完成了codin。我在_.each()方法中使用window.open()。但是chrome不会打开多个标签。请帮助。

1 个答案:

答案 0 :(得分:0)

当我需要在新标签页中打开网址时,我使用@Amro's answer进行了修改,如下所示:

// From https://stackoverflow.com/a/11389138
function openNewBackgroundTab(url) {
    var a = document.createElement("a");
    a.href = url;
    var evt = document.createEvent("MouseEvents");
    //the tenth parameter of initMouseEvent sets ctrl key
    evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0,
                                true, false, false, false, 0, null);
    a.dispatchEvent(evt);
}