我想在新選項卡中打開鏈接。該鏈接的HTML標記是在新選項卡中打開延遲
<a id="target_link" target="_blank" href="http://yahoo.com">
但它沒有按照我的預期工作。我想在一段時間後在新標籤中打開。下面的jQuery這是工作完全正常,但在新標籤頁中打開片段
setTimeout(function()
{
window.location = $('target_link').get('href');
},1800);
[ Window.location()](https://developer.mozilla.org/en-US/docs/Web/API/Window/location):* ...文檔的當前位置... * [Window.op en()](https://developer.mozilla.org/en-US/docs/Web/API/Window/open):*將資源加載到新的瀏覽上下文(例如窗口)或已經存在的存在... * ==> **建議的答案應該可以正常工作.. ** – gmo