From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/ru/web/api/document/location/index.html | 76 +++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 files/ru/web/api/document/location/index.html (limited to 'files/ru/web/api/document/location') diff --git a/files/ru/web/api/document/location/index.html b/files/ru/web/api/document/location/index.html new file mode 100644 index 0000000000..f0541c8c74 --- /dev/null +++ b/files/ru/web/api/document/location/index.html @@ -0,0 +1,76 @@ +--- +title: Document.location +slug: Web/API/Document/location +tags: + - API + - Document + - HTML DOM + - Read-only + - Свойство +translation_of: Web/API/Document/location +--- +

{{APIRef("DOM")}}

+ +

Доступное только для чтения свойство Document.location возвращает объект {{domxref("Location")}}, который содержит информацию о URL страницы и предоставляет методы для изменения этого URL и загрузки другого URL.

+ +

Хотя Document.location это read-only объект Location, вы всё же можете присвоить ему {{domxref("DOMString")}}. Это означает, что в большинстве случаев вы можете работать с document.location так, будто это строка: document.location = 'http://www.example.com' фактически то же, что и document.location.href = 'http://www.example.com'.

+ +

Чтобы получить URL как строку, вы можете использовать read-only свойство {{domxref("document.URL")}}.

+ +

Если страница находится вне текущего контекста, вернётся null.

+ +

Синтаксис

+ +
locationObj = document.location
+document.location = 'http://www.mozilla.org' // Эквиваленто след.
+document.location.href = 'http://www.mozilla.org'
+ +

Пример

+ +
dump(document.location);
+// Выведет строку
+// "http://www.example.com/juicybits.html" в консоли
+
+ +

Спецификации

+ + + + + + + + + + + + + + + + + + + +
СпецификацияСтатусКомментарии
{{SpecName('HTML WHATWG', "history.html#the-location-interface", "Document.location")}}{{Spec2('HTML WHATWG')}}Нет изменений с {{SpecName("HTML5 W3C")}}.
{{SpecName('HTML5 W3C', "browsers.html#the-location-interface", "Document.location")}}{{Spec2('HTML5 W3C')}}Исходное определение.
+ +

Совместимость с браузерами

+ +

 

+ + + +

{{Compat("api.Document.location")}}

+ +

 

+ +

Смотрите также

+ + + +

 

-- cgit v1.2.3-54-g00ecf