如何使用正則表達式和jQuery從/admin/articles/add
檢索/admin/articles/
?jQuery - 正則表達式問題 - 獲取3'/'(斜線)之間的href地址
我已經有以下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>
謝謝大家的幫助幫助。
這是你的確切渴望。我的意思是,有'比location.pathaname'更多的斜槓? – naveen
是的......那將是我的確切要求 –