“Как получить URL -адрес страницы в JavaScript” Ответ

JavaScript Получите текущий URL

var currentUrl = window.location.href;
Grepper

Получите текущий URL JavaScript

window.location.pathname; // Returns path only (/path/example.html)
window.location.href;     // Returns full URL (https://example.com/path/example.html)
window.location.origin;   // Returns base URL (https://example.com)
Spyder

Как получить URL -адрес браузера в JavaScript

function getURL() {
  alert("The URL of this page is: " + window.location.href);
}
Nemo

Как получить URL -адрес страницы в JavaScript

// this gives you just the URL without params
var currentUrlWithoutParams = window.location.href.split("?")[0];
sandy_codes_py

Получить текущий URL с JavaScript?

console.log(window.location.href);

As noted in the comments, the line below works, but it is bugged for Firefox.
document.URL
Mr. Samy

JavaScript URL -проверка

const isAbsoluteUrl = url => /^[a-z][a-z0-9+.-]*:/.test(url);

// Example
isAbsoluteUrl('https://1loc.dev');          // true
isAbsoluteUrl('https://1loc.dev/foo/bar');  // true
isAbsoluteUrl('1loc.dev');                  // false
isAbsoluteUrl('//1loc.dev'); 
Batman

Ответы похожие на “Как получить URL -адрес страницы в JavaScript”

Вопросы похожие на “Как получить URL -адрес страницы в JavaScript”

Больше похожих ответов на “Как получить URL -адрес страницы в JavaScript” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования