我的网站有很多链接,我正在尝试将所有的 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); //设置延时以确保网页完全加载
更新:
数据来自Google AdSense的 async 代码。(在Stackoverflow的其他部分找到了类似的解决方案,但我仍然无法替换。如何使用JavaScript获取DIV子元素)
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
使用querySelectorAll
$(function() { document.querySelectorAll("a[target=_top]").forEach(function(elem) { this.target="_blank"; }); }); });