aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/documenturiobject
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/document/documenturiobject
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/document/documenturiobject')
-rw-r--r--files/ja/web/api/document/documenturiobject/index.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/files/ja/web/api/document/documenturiobject/index.html b/files/ja/web/api/document/documenturiobject/index.html
new file mode 100644
index 0000000000..fa5602c622
--- /dev/null
+++ b/files/ja/web/api/document/documenturiobject/index.html
@@ -0,0 +1,46 @@
+---
+title: Document.documentURIObject
+slug: Web/API/Document/documentURIObject
+tags:
+ - API
+ - DOM
+ - Non-standard
+ - Reference
+ - プロパティ
+ - 標準外
+translation_of: Web/API/Document/documentURIObject
+---
+<div>{{ApiRef("DOM")}}{{Non-standard_header}}</div>
+
+<p><span class="seoSummary"><code><strong>Document.documentURIObject</strong></code> プロパティは読み取り専用で、 <a href="/ja/docs/Web/API/document">document</a> の URI を表す {{Interface("nsIURI")}} オブジェクトを返します。</span></p>
+
+<p>このプロパティは、拡張機能のコードなどの (UniversalXPConnect) 特権を持つスクリプトでのみ機能します。ウェブコンテンツではこのプロパティは特別な意味を持たず、他のカスタムプロパティと同様に扱うことしかできません。</p>
+
+<p>特権コードでは、(<code><a href="/ja/XPCNativeWrapper">XPCNativeWrapper</a></code> の <code>wrappedJSObject</code> などの) ラップされていないコンテンツオブジェクトに対してこのプロパティを取得または設定しないように注意しなければなりません。詳しくは {{Bug(324464)}} のコメントを参照して下さい。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">var <var>uri</var> = <var>document</var>.documentURIObject;
+</pre>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js">// Firefox の現在のタブの URI スキームが "http" かどうか調べる
+// このコードは browser.xul のコンテキストで実行されるものとする
+var uriObj = content.document.documentURIObject;
+var uriPort = uriObj.port;
+
+if (uriObj.schemeIs('http')) {
+ ...
+}
+</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<p>どの仕様にも属しません。</p>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("api.Document.documentURIObject")}}</p>