“JS obtiene URL de base” Código de respuesta

JS obtiene URL de base

var url = window.location.origin;
Skipper

Encuentre URL base en JavaScript

var base_url = window.location.origin;

var host = window.location.host;

var pathArray = window.location.pathname.split( '/' );
Fine Frog

URL de raíz JS

suppose that you have a page with this address: http://sub.domain.com/virtualPath/page.htm. use the following in page code to achive those results:

window.location.host : you'll get sub.domain.com:8080 or sub.domain.com:80
window.location.hostname : you'll get sub.domain.com
window.location.protocol : you'll get http:
window.location.port : you'll get 8080 or 80
window.location.pathname : you'll get /virtualPath
window.location.origin : you'll get http://sub.domain.com *****
Wandering Walrus

JavaScript obtenga URL base

console.log(window.location.origin);
Carnivorous Flamingo

Respuestas similares a “JS obtiene URL de base”

Preguntas similares a “JS obtiene URL de base”

Más respuestas relacionadas con “JS obtiene URL de base” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código