我正在尝试在 chrome 中打开多个标签而不阻止弹出窗口
$('#button').click(function(){
setTimeout(function () {
window.open('http://www.google.com','_blank');
}, 100);
setTimeout(function () {
window.open('http://www.google.com','_blank');
}, 100);
setTimeout(function () {
window.open('http://www.google.com','_blank');
}, 100);
setTimeout(function () {
window.open('http://www.google.com','_blank');
}, 100);
});
但目前只打开一个标签如何打开多个标签而不阻止谷歌浏览器中的弹出窗口