模拟a标签click,弹出新页面

$("<a>").attr("href", url).attr("target", "_blank")[0].click();  //jquery

window.open(href_url, '_blank').focus(); //原生window打开

原文地址:https://www.cnblogs.com/hill-foryou/p/8298293.html