我正在学习如何编写chrome扩展程序,而且我对javascript很新。
这是一些html:
<div class="button data" style="">
<a class="button1 whiteColor" href="http://link1.com">VIEW This</a>
<a class="button2 redColor" href="http://link2.com">VIEW That</a>
</div>
我想要做的是通过使用javascript自动点击button2来打开link2.com。
我正在使用以下内容,但它不起作用:/
document.getElementByClassName("button2 redColor").click();
任何帮助都将不胜感激!!
答案 0 :(得分:9)
document.getElementsByClassName("button2 redColor")[0].click();
您需要选择索引,因为getElementsByClassName返回数组