“JS Obtenha o nome do host do URL” Respostas de código

Obtenha o nome atual do host em javascript

// If URL is http://www.somedomain.com/account/search?filter=a#top

window.location.pathname // /account/search

// For reference:

window.location.host     // www.somedomain.com (includes port if there is one)
window.location.hostname // www.somedomain.com
window.location.hash     // #top
window.location.href     // http://www.somedomain.com/account/search?filter=a#top
window.location.port     // (empty string)
window.location.protocol // http:
window.location.search   // ?filter=a
Simman

JavaScript Get HostName do URL atual

var host = window.location.protocol + "//" + window.location.host;
Handsome Hawk

JS Obtenha o nome do host do URL

url = "http://www.example.com/path/to/somwhere";
urlParts = /^(?:\w+\:\/\/)?([^\/]+)([^\?]*)\??(.*)$/.exec(url);
hostname = urlParts[1]; // www.example.com
path = urlParts[2]; // /path/to/somwhere
Borma

Respostas semelhantes a “JS Obtenha o nome do host do URL”

Perguntas semelhantes a “JS Obtenha o nome do host do URL”

Mais respostas relacionadas para “JS Obtenha o nome do host do URL” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código