从变量的`/`后获取值

时间:2017-06-24 15:42:18

标签: javascript url pathname

我试图使用javascript获取当前页面pathname。我能够得到它,但我已经通过 Forward Slash /获得了它。我想从变量中删除/

这是我尝试过的代码。 :)



var URLPath = window.location.pathname;
alert(URLPath);

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:1)

&#13;
&#13;
var URLPath = window.location.pathname;
alert(URLPath.substr(1));
&#13;
&#13;
&#13;

答案 1 :(得分:1)

使用slicesubstr从第二个字符开始获取子字符串:

&#13;
&#13;
var URLPath = window.location.pathname.slice(1);
//                                    ^^^^^^^^^
alert(URLPath);
&#13;
&#13;
&#13;