gpt4 book ai didi

javascript - 如何使用正则表达式将字符串添加到现有字符串?

转载 作者:行者123 更新时间:2023-12-02 13:47:19 25 4
gpt4 key购买 nike

我有类似 this 的链接:我怎样才能将其转换为 this 。改为这一切jay-z它可以是任何东西。

这是我的示例代码:

$('body a').each(function() {
var link = $(this).attr('href');
if(link.indexOf('/category/music/') >= 0) {
// ...
}
});

那么如何改变呢?

最佳答案

我猜您想将查询字符串附加到页面上链接的 href 值。如果是这样,这将满足您的需要...

$("body a").each(function() {
var $this = $(this);
var link = $this.attr("href");
if(link.indexOf('/category/music/') >= 0) {
$this.attr("href", link + "?param=1");
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<a href="http://example.com/category/music/jay-z">Jay-Z</a><br/>
<a href="http://example.com/category/books/clive-barker">Clive Barker</a><br/>
<a href="http://example.com/category/music/cardiacs">Cardiacs</a>

运行代码片段,然后将鼠标悬停在链接上。您将看到查询字符串已附加到音乐类别中的链接。

关于javascript - 如何使用正则表达式将字符串添加到现有字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41284344/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com