獲取網址最後一部分(省略任何參數)的最佳方式是什麼?還網址可能或可能不包括最後的「/」字符JavaScript獲取最後一個網段
例如
http://Home/Billing/Index.html?param1=2&another=2
should result in: Index.html
http://Home/Billing/Index.html/
should result in: Index.html
我已經試過,但我不能讓如何檢查最後/
ar href = window.location.pathname;
var value = href.lastIndexOf('/') + 1);
像這樣的東西http://stackoverflow.com/questions/1302306/how-to-pull-the-file-name-from-a-url-using-javascript-jquery? – Dhiraj
[FileName from url excluded querystring]可能的重複(http://stackoverflow.com/questions/6035352/filename-from-url-excluding-querystring) –
這兩個都不考慮最後的'/'字符。請看看示例2我發佈了 – ShaneKm