/admin/articles/
を/admin/articles/add
から正規表現とjQueryを使用して取得するにはどうすればよいですか?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>
を助ける必要が助けありがとうございました。
これはあなたの正確なreuirementです。私は、そこにスラッシュ以上の 'location.pathaname'を持っていることを意味しますか? – naveen
ええと...それは私の正確なreqs –