2014-02-21 50 views

回答

3

你只需要使用幾個子字符串函數之一。

var path = location.pathname.substr(1); 
+0

非常感謝! – jemiloii

+1

沒問題。這裏有一個有趣的鏈接,告訴你在做同樣的事情的方法之間的差異(在你的情況,不是必要的):substr(),substring(),slice():http://stackoverflow.com/questions/3745515/what-the-difference-between-substr-and-substring – Keith

2
var path = location.pathname.substring(1); 
+0

給你一個+1! – jemiloii

0

可以使用replace()功能還可以,但它取代了所有發現的前進路徑斜槓。

var path = location.pathName.replace("/",""); 
+0

它不是隻是實際取代第一個。 –