ページ上のすべてのリンクを変更したいのですが、クラスのないリンクでは機能しますが、クラスのあるリンクでは機能しません。
これは私が使用しているコードです:
window.onload = function() {
/* onload code */
var anchors = document.getElementsByTagName("a");
for (var i = 0; i < anchors.length; i++) {
anchors[i].href = "http://www.example.com/?redirect=" + anchors[i].href
}
}
次のようなリンクで機能します。
<a id="box-left" href="http://www.google.com"></a>
しかし、これではうまくいきません:
<a class="links" href="redirect.php?link=125411" onclick="launch();" target="_blank"></a>