我的網站有很多鏈接,我正在嘗試將所有的 a href
目標 _top
替換為 _blank
。我該如何用JavaScript實作這個功能?
它會在我的網頁中找到所有的 _top
並替換為 _blank
我嘗試了以下方法:
// const string = document.getElementsByTagName('a')[0].innerHTML const string = document.querySelector("_top"); //获取字符串 var newstring = string.replace(/_top/, '_blank'); //尝试在整个页面中替换字符串 const myTimeout = setTimeout(selecteAd, 2000); //设置延时以确保网页完全加载
<!-- 示例字符串 --> <a data-asoch-targets="imageClk" href="https://www.eample.com" target="_top" x-ns-8l6in-e="2"><canvas class="ns-8l6in-e-3 image" x-ns-8l6in-e="3" width="600" height="314"></canvas></a>
更新:
資料來自Google AdSense的 async
程式碼。 (在Stackoverflow的其他部分找到了類似的解決方案,但我仍然無法替換。如何使用JavaScript獲取DIV子元素)
P粉5178143722023-09-08 10:06:28
使用querySelectorAll
$(function() { document.querySelectorAll("a[target=_top]").forEach(function(elem) { this.target="_blank"; }); }); });