从变量中获取`/`之后的值
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>
我试图使用 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>