我正在使用 Greasemonkey 和 JavaScript 来修改页面。我找到了所有外部链接并在链接之前添加了一个图像,我想在图像上添加一个鼠标悬停事件。我不知道如何在循环中做到这一点。这是我所拥有的:
var anchors = document.evaluate('//a[@target]',document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
var icon4 = document.createElement('img');
icon4.src = '...';
for (var a = 0; a < anchors.snapshotLength; a++){
if (anchors.snapshotItem(a).href.substring(0,16) != location.href.substring(0,16)){
icon4.addEventListener('mouseover', function(){this.title = 'Hello'}, false);
icon4.addEventListener('mouseout', function(){this.title = ''}, false);
anchors.snapshotItem(a).parentNode.insertBefore(icon4.cloneNode(true),anchors.snapshotItem(a));
}
}