“JS URL PATHNAME” Code-Antworten

JavaScript erhalten URL -Pfad

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 bekommen Pfad von der URL

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

Ähnliche Antworten wie “JS URL PATHNAME”

Fragen ähnlich wie “JS URL PATHNAME”

Weitere verwandte Antworten zu “JS URL PATHNAME” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen