aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/documenturiobject/index.html
blob: 7a2566a9912e2381c0f2a9492f10c79263b7889d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
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>

<p>{{Compat("api.Document.documentURIObject")}}</p>