From a4f49f9a14007bf65efdbe671d6383e8b233ac5b Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 21 Mar 2021 01:25:55 +0900 Subject: Document.documentURI の日本語訳を更新 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2021/02/20 の英語版を反映 --- files/ja/web/api/document/documenturi/index.html | 80 ++++++++++++++---------- 1 file changed, 46 insertions(+), 34 deletions(-) (limited to 'files') diff --git a/files/ja/web/api/document/documenturi/index.html b/files/ja/web/api/document/documenturi/index.html index f8d2d03e81..7451aefcfc 100644 --- a/files/ja/web/api/document/documenturi/index.html +++ b/files/ja/web/api/document/documenturi/index.html @@ -2,11 +2,12 @@ title: Document.documentURI slug: Web/API/Document/documentURI tags: - - API - - DOM - - Document - - Property - - Reference +- API +- DOM +- Document +- Property +- Read-only +- Reference - Web - プロパティ translation_of: Web/API/Document/documentURI @@ -15,43 +16,54 @@ translation_of: Web/API/Document/documentURI

{{domxref("Document")}} インターフェイスの documentURI プロパティは、文書の位置を文字列で返します。

-

もともと DOM3 で定義されたときは、この属性は読み書きできました。最新の DOM 標準では読み取り専用です。

+

構文

-

構文

- -
var string = document.documentURI;
+
const uri = document.documentURI
 
-

メモ

+

+ +

JavaScript

+ +
document.getElementById("url").textContent = document.documentURI;
+ +

HTML

+ +
<p id="urlText">
+  URL:<br/>
+  <span id="url">URL goes here</span>
+</p>
-

{{domxref("document.URL")}} プロパティも持つ文書では、同じ値を返します。

+

結果

-

仕様書

+

{{EmbedLiveSample("Example", "100%", 100)}}

+ +

仕様書

- - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('DOM WHATWG', '#dom-document-documenturi','documentURI')}}{{Spec2('DOM WHATWG')}} 
{{SpecName('DOM3 Core', '#Document3-documentURI', 'documentURI')}}{{Spec2('DOM3 Core')}}初回定義
仕様書状態備考
{{SpecName('DOM WHATWG', '#dom-document-documenturi','documentURI')}}{{Spec2('DOM WHATWG')}}
-

ブラウザーの対応

- - +

ブラウザーの互換性

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

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf