美文网首页
标签在JS与Jquery中的使用

标签在JS与Jquery中的使用

作者: 猿姑凉 | 来源:发表于2017-10-24 08:54 被阅读6次

1.a标签的href的修改

① javascript:

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

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

②jquery:

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

相关文章

网友评论

      本文标题:标签在JS与Jquery中的使用

      本文链接:https://www.haomeiwen.com/subject/mqftpxtx.html