使用replace with在运行时使用jquery将链接替换为其他链接

发布于 2024-12-12 00:49:58 字数 252 浏览 0 评论 0原文

我有两个链接:

<li><a href="/newproducts" id="quiklinks_02">New products</a>

<a href="/c/13/latest-products"/>

我想用 href="/newproducts" 替换 href="/c/13/latest-products" ,我如何使用替换来实现此目的。

问候

I have got two links :

<li><a href="/newproducts" id="quiklinks_02">New products</a>

<a href="/c/13/latest-products"/>

I want to replace the href="/c/13/latest-products" with href="/newproducts" , how can i acheive this using replace with.

Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

念﹏祤嫣 2024-12-19 00:49:58

如果您只想更改 href,则无需使用 replaceWith。您可以简单地使用 attr

$("a[href='/c/13/latest-products']").attr("href", $("#quiklinks_02").attr("href"));

您也许可以改进第一个选择器据我的印象,您问题中的示例不是您的完整代码!

You don't need to use replaceWith if you want to just change the href. You can simply use attr:

$("a[href='/c/13/latest-products']").attr("href", $("#quiklinks_02").attr("href"));

You may be able to improve the first selector as I get the impression the example in your question is not your full code!

掩于岁月 2024-12-19 00:49:58
$('li a:eq(1)').attr('href',$('li a:eq(0)').attr('href'));
$('li a:eq(1)').attr('href',$('li a:eq(0)').attr('href'));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文