新しいタブで特定のリンクを開きたい。タグに直接設定できないので、特定のクラス名のタグ<a>
にリンクを入れて、<span>
JavaScriptでターゲット属性を設定したいと思います。
これは簡単だと思いましたが、機能させることができません。
addOnloadHook(function () {
document.getElementByClassName('newTab').getElementsByTagName('a').setAttribute('target', '_blank');
});
<span class="newTab"><a href="http://www.com">Link</a></span>
私は何が間違っているのですか?