gpt4 book ai didi

jQuery - 正则表达式问题 - 获取 3 '/'(斜杠)之间的 href 地址

转载 作者:行者123 更新时间:2023-12-01 08:22:18 27 4
gpt4 key购买 nike

如何使用正则表达式和 jQuery 从 /admin/articles/add 检索 /admin/articles/

我已经有了以下 jQuery 代码设置,但需要正则表达式方面的帮助

<script>
$(document).ready(function(){

var path = "/" + location.pathname.substring(1);

//Need regular expession here to make 'path' per the above mentioned example

if ( path ) {
$('#idlist a[href$="' + path + '"]').parent().attr('class','active');
}
});
</script>

谢谢大家的帮助。

最佳答案

var path = location.pathname.replace (/^(\/.+?\/.+?\/).+$/, '$1');


'/admin/articles/add' 转换为 '/admin/articles/'

关于jQuery - 正则表达式问题 - 获取 3 '/'(斜杠)之间的 href 地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6633045/

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