Последние учебники веб-разработки
×

JavaScript Справка

обзор

JavaScript

JS строка JS Число JS операторы JS Заявления JS математический JS Дата JS массив JS логический JS RegExp JS Глобальный JS конверсионный

браузер BOM

Window Navigator Screen History Location

HTML DOM

DOM Документ DOM элементы DOM Атрибуты DOM Мероприятия DOM Стиль

HTML Объекты

<a> <abbr> <address> <area> <article> <aside> <audio> <b> <base> <bdo> <blockquote> <body> <br> <button> <canvas> <caption> <cite> <code> <col> <colgroup> <datalist> <dd> <del> <details> <dfn> <dialog> <div> <dl> <dt> <em> <embed> <fieldset> <figcaption> <figure> <footer> <form> <head> <header> <h1> - <h6> <hr> <html> <i> <iframe> <img> <ins> <input> button <input> checkbox <input> color <input> date <input> datetime <input> datetime-local <input> email <input> file <input> hidden <input> image <input> month <input> number <input> password <input> radio <input> range <input> reset <input> search <input> submit <input> text <input> time <input> url <input> week <kbd> <keygen> <label> <legend> <li> <link> <map> <mark> <menu> <menuitem> <meta> <meter> <nav> <object> <ol> <optgroup> <option> <output> <p> <param> <pre> <progress> <q> <s> <samp> <script> <section> <select> <small> <source> <span> <strong> <style> <sub> <summary> <sup> <table> <td> <th> <tr> <textarea> <time> <title> <track> <u> <ul> <var> <video>

Другие объекты

CSSStyleDeclaration


 

HTML DOM documentURI Propery

<Document Object

пример

Получить расположение URI документа:

var x = document.documentURI;

В результате х будет:

http://www.w3ii.com/jsref/prop_document_documenturi.html
Попробуй сам "

Определение и использование

Множества свойства documentURI или возвращают расположение документа.

Если документ был создан объект DocumentImplementation, или если он не определен, то возвращаемое значение равно нулю.

Совет: В отличие от document.URL собственности, свойство documentURI может использоваться на любых типах документов, в то время как URL может быть использован только на HTML - документов.


Поддержка браузеров

Имущество
documentURI да Не поддерживается да да да

Синтаксис

Возвращает свойство documentURI:

document.documentURI

Установите свойство documentURI:

document.documentURI= locationURI

Технические подробности

Возвращаемое значение: Строка, представляющая URI документа
DOM Version Базовый уровень Объект 3 документа

<Document Object