javascript和jquery修改a标签的href属性
发布时间:2016-12-30 来源:查字典编辑
摘要:javascript:复制代码代码如下:document.getElementById("myId").setAttribute("href...
javascript:
复制代码 代码如下:
document.getElementById("myId").setAttribute("href","www.xxx.com");
document.getElementById("myId").href = "www.xxx.com";
jquery:
复制代码 代码如下:
$("#myId").attr("href","www.xxx.com");