0

ページなしでURLを取得したい。下記をご覧ください。

現在のURL

http://localhost/FolderPath/Page.html

取得したいです

http://localhost/FolderPath/

これどうやってするの?ありがとう。

4

4 に答える 4

1
var oldPath = 'http://localhost/FolderPath/Page.html';
var newPath = oldPath.split('/').slice(0, -1).join('/') + '/';
于 2012-09-06T03:32:17.483 に答える
1
"http://localhost/FolderPath/Page.html".replace(/[^\/]*$/, '');
于 2012-09-06T03:34:36.817 に答える
0
var url = "http://localhost/FolderPath/Page.html";
url = url.substr(0, url.lastIndexOf('/') + 1);
于 2012-09-06T03:37:13.407 に答える
0

正規表現は誰ですか?

var url = "http://localhost/FolderPath/Page.html";
url.match(/(.+)(\/(.+)?)$/)[1] + "/";

//returns "http://localhost/FolderPath/"

var url = "http://localhost/FolderPath/";
url.match(/(.+)(\/(.+)?)$/)[1] + "/";

//returns "http://localhost/FolderPath/"
于 2012-09-06T03:42:25.537 に答える