4

こんにちは、Windows URL からベース URL とファイル パスを取得しようとしました..しかし、取得できません..私を修正してください..

URL は次のとおりです。

http://sample.com:30023/portal/site/samples/index.jsp

現在の出力は次のとおりです。 http://sample.com:30023/index.jsp ?

必要な出力は次のとおりです: http://sample.com:30023/portal/site/samples/

使用コード:

var baseURL = location.protocol + "//" + location.hostname + (location.port && ":" + location.port) + "/";
4

2 に答える 2

2

多分このようなもの:

var sBase = location.href.substr(0, location.href.lastIndexOf("/") + 1);
于 2013-01-31T13:18:51.020 に答える