我将URL作为输入,我想将其分配给锚标记。
假设网址为
var url = "http://www.google.com";
我想把这个网址放在这个
<a href="http://www.google.com">http://www.google.com</a>
答案 0 :(得分:3)
var a = document.createElement('a');
a.href = "http://google.com";
a.textContent = a.href