如何使用JavaScript更改链接的URL?

时间:2019-07-07 20:45:08

标签: javascript html

我需要知道如何更改链接的网址。

例如从www.sitename.com到www.anothersitename.com

我该如何使用JavaScript?

<a id="myAnchor" href="http://www.microsoft.com">Microsoft</a>
<button onclick="myFunction()">Change link</button>

function myFunction() {
//For example How to change Microsoft url to w3 schools url?
//what do i put here?
}

1 个答案:

答案 0 :(得分:2)

function changeHref() {
  document.getElementById("myAnchor").setAttribute("href", "www.google.com")
}

这会将您的链接的href属性设置为google.com。当然,此URL一定不能硬编码,并且可以用函数参数替换。