使用的瀏覽器是Chrome
今天試著使用JavaScript抓圖片網址並在新視窗打開
開視窗的code有試過兩種
一個是 window.open(url, "_blank");
有試過配合 .focus() .blur() 的用法 但都無效
另一個是
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);
}
openNewBackgroundTab(url);
這方法也是不能
請問正確的寫法是怎樣??