js中如何把href统一替换

今天在改一个网站的时候,需要把a中的href全部替换,最初想的太麻烦了,想的是用正则去匹配再替换,其实没这么麻烦
只是一行代码的事

$("#container a").attr("href","#")

例子:
js版本:

document.getElementById("myId").setAttribute("href","www.xxx.com"); 
document.getElementById("myId").href = "www.xxx.com"; 

jq版本:

$("#myId").attr("href","www.xxx.com"); 

from http://www.jb51.net/article/44501.htm

你可能感兴趣的:(js中如何把href统一替换)