我正在编辑我的帖子,这里是此问题的重复:How to hide link information at the bottom left/right of the browser on hover
我从该帖子中获得了以下代码:
var aTags = document.querySelectorAll('span[data-href]');
for(var i = 0; i < aTags.length; i++){
var aTag = aTags[i];
aTag.addEventListener('click', function(e){
var ele = e.target;
window.location.replace(ele.getAttribute('data-href'));
});
}
span[data-href]{
cursor:pointer;
}
<span data-href="http://www.google.com">test</span>
我试图将跨距的示例更改为锚点,并且结果仅是可见的,当我单击锚点时,它没有启动任何外部链接,我也尝试了JS警报
我想念什么吗?