从锚标签href属性更改自定义词

我将我的网站从 www.guruji.com/demo 转移到 guruji.com

现在我的所有链接都是 <a href="www.guruji/demo/index.php">home</a> <a href="www.guruji/demo/about.php">about</a>

我想从所有链接中删除演示

我该怎么做请解决


小唯快跑啊
浏览 137回答 1
1回答

四季花海

$('a').each(function() {&nbsp; &nbsp; var url = $(this).attr('href');&nbsp; &nbsp; url = url.replace("demo/", '');&nbsp; &nbsp; $(this).attr('href', url);})这基本上是说遍历每个 a 标签,获取 href 值,删除 demo/ 部分,并将其替换为 url。Flo 建议的 ctrl+H 方法更简单 imo
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript