2012-11-14 59 views

回答

5

這裏是一個可能的解決方案:

var result = url.substring(0, url.lastIndexOf("/")); 

這裏是另一個(不是最好的,但是)解決方案:

var result = url.split("/").slice(0, -1).join("/"); 
-2

要獲取當前窗口的網址,你可以使用: window.location.href;

廣告從中提取一個子部分,直到您最後的/您可以使用以下腳本:

<script type="text/javascript"> 
var currUrl = window.location.href; 
var modUrl =currUrl.substring(0,currUrl.lastIndexOf("/")); 
//modUrl =currUrl.substring(0,currUrl.lastIndexOf("bbb")); //Incase you have some other criteria to extract the sub URL. 
</script> 

希望它有幫助。

相關問題