jquery与javascript如何设置或修改a标签href属性呢?非常的简单,例如小编要修改a标签href属性,将跳转网址改成“www.tpyyes.com”,如下:
<a href="www.baidu.com" id="myId" >点击进入百度</a>
如果是javascript代码,可以这样写:
document.getElementById("myId").setAttribute("href","www.tpyyes.com"); 或者 document.getElementById("myId").href = "www.tpyyes.com";
如果是jquery代码,修改a标签href属性就更容易了,如下所示:
$("#myId").attr("href","www.tpyyes.com");
虽然这两段代码很简单,但是还是会有很多人不会用,所以想小编就整理了一下。