我正在尝试使用JS向锚点/ div添加URL。我已经实现了以下代码,但它只会在同一个窗口中打开URL。
var href = document.getElementById("mainwrapper");
href.setAttribute('onclick', 'window.location.href=\'http://www.ebay.com/\'');'
使用此方法打开目标的最佳方法是什么?
答案 0 :(得分:0)
你需要使用window.open()函数的第二个参数来做到这一点。
var href = document.getElementById("mainwrapper");
href.addEventListener("click", handleOpen);
function handleOpen(){
window.open('http://www.ebay.com','_blank');
}