何我获取不包含任何网址参数的网址段的最后一部分。
所以如果我在这个页面上:
http://example.com/myfolder/mypage.aspx?x=1
我想得到:
mypage.aspx
答案 0 :(得分:1)
你可以这样做:
// The first thing is to strip off the things after query string:
var url = "http://example.com/myfolder/mypage.aspx?x=1";
url = url.split("?")
url = url[0];
// Get the last path:
url = url.split("/");
page = url[url.length-1];
alert(page);

即使其中没有?
,上述路径也会有效。