我想检索此网址中破折号后面显示的最后一个单词:
我按如下方式检索网址:
$(location).attr('href');
//pure javascript
var pathName = window.location.pathname;
然后我想提取最后( - )短划线后面出现的单词,所以在上面的情况下是“女性”。
我怎么能这样做?
谢谢!
答案 0 :(得分:2)
答案 1 :(得分:0)
试试这个
url_string = document.location.href;
url_array = url_string.split('-');
after_last_dash = url_array[url_array.length-1];
alert( after_last_dash );