“JS URL PathName” Réponses codées

JavaScript Get URL Chemin

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 obtenez le chemin de l'URL

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

Réponses similaires à “JS URL PathName”

Questions similaires à “JS URL PathName”

Plus de réponses similaires à “JS URL PathName” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code