我有这样的代码:
<li class="myClass">
<a href="www.example.com">link</a>
</li>
我需要将href属性更改为www.example2.com 我如何使用javascript实现这一目标?
答案 0 :(得分:0)
您可以使用document.querySelector
:
document.querySelector('.myClass a').href = 'www.example2.com'
Javascript最初设计用于访问网站上的DOM,因此您需要在document
中找到元素。有很多方法可以做到这一点。查看以“get”开头的所有方法:http://www.w3schools.com/jsref/dom_obj_document.asp。