如何使用 jQuery 更改超链接的 href? [复制]
Posted
技术标签:
【中文标题】如何使用 jQuery 更改超链接的 href? [复制]【英文标题】:How can you change the href for a hyperlink using jQuery? [duplicate] 【发布时间】:2018-05-15 09:42:00 【问题描述】:如何使用 jQuery 更改超链接的 href?
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function()
$("a").each(function()
var href = $(this).attr('href');
alert(href);
var reg =href+'hiii' ;
alert(reg);
$(this).attr("href", reg);
alert($(this).text())
);
);
</script>
<button>Alert the value of each list item</button>
<ul>
<a href="yuyuyuyuyuy"><p>If you click on me, I will disappear.</p></a>
<a href="ioooo"><p>If you click on me, I will disappear.</p></a>
</ul>
这就是你可以改变甚至编辑链接工作的方式,以便在网站上编辑附属链接删除 jquery alart
【问题讨论】:
【参考方案1】:这是非常基本的谷歌搜索用法。
答案是: 1.给那个标签设置一个id,像这样
<a id="my_link"></a>
然后使用 jquery 更改它:
$("#my_link").attr("href", "your_link")
【讨论】:
以上是关于如何使用 jQuery 更改超链接的 href? [复制]的主要内容,如果未能解决你的问题,请参考以下文章