使用replace with在运行时使用jquery将链接替换为其他链接
我有两个链接:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想更改
href
,则无需使用replaceWith
。您可以简单地使用attr
:您也许可以改进第一个选择器据我的印象,您问题中的示例不是您的完整代码!
You don't need to use
replaceWith
if you want to just change thehref
. You can simply useattr
:You may be able to improve the first selector as I get the impression the example in your question is not your full code!