“JS URL Pathname” Kode Jawaban

JavaScript mendapatkan jalur 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 mendapatkan jalan dari url

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

Jawaban yang mirip dengan “JS URL Pathname”

Pertanyaan yang mirip dengan “JS URL Pathname”

Lebih banyak jawaban terkait untuk “JS URL Pathname” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya