“JS URL Pathname” Kod odpowiedzi

JavaScript Zdobądź ścieżkę URL

window.location.pathname
TC5550

JS URL Pathname

var getLocation = function(href) {
    var l = document.createElement("a");
    l.href = href;
    return l;
};
var l = getLocation("http://example.com/path");
console.debug(l.hostname)
>> "example.com"
console.debug(l.pathname)
>> "/path"
Shadow

JS dostajcie ścieżkę z URL

var reg = /.+?\:\/\/.+?(\/.+?)(?:#|\?|$)/;
var pathname = reg.exec( 'http://www.somedomain.com/account/search?filter=a#top' )[1];
Borma

Odpowiedzi podobne do “JS URL Pathname”

Pytania podobne do “JS URL Pathname”

Więcej pokrewnych odpowiedzi na “JS URL Pathname” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu