从变量中获取`/`之后的值

Get the Value after `/` from Variable

我试图使用 javascript 获取当前页面 pathname。我能够得到它,但我是用 正斜杠 / 得到它的。我想从变量中删除 /

这是我试过的代码。 :)

var URLPath = window.location.pathname;
alert(URLPath);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

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

使用slice or substr获取从第二个字符开始的子串:

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