aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/document/documenturi/index.html
blob: 5fca98d9e1af8252232f328809c676f88c2eedaa (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
45
46
47
48
---
title: Document.documentURI
slug: Web/API/Document/documentURI
tags:
  - URL
  - documentURI
translation_of: Web/API/Document/documentURI
---
<div>{{ApiRef("DOM")}}</div>

<p>{{domxref("Document")}} 인터페이스의 <code><strong>documentURI</strong></code> 속성은 document location 을 string 으로 반환합니다.</p>

<p>DOM3 에서 원래 이 속성은 읽기/쓰기 속성으로 정의되어 있습니다. DOM4 명세에서는 읽기 전용입니다.</p>

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox">var <var>string</var> = document.documentURI;
</pre>

<h2 id="Notes">Notes</h2>

<p>HTML documents 는 동일한 값을 반환하는 {{domxref("document.URL")}} 속성을 가집니다. <code>URL </code>과는 달리, <code>documentURI</code> 는 모든 타입의 documents 에서 이용 가능합니다.</p>

<h2 id="Specifications">Specifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('DOM4', '#dom-document-documenturi','documentURI')}}</td>
   <td>{{Spec2('DOM4')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('DOM3 Core', '#Document3-documentURI', 'documentURI')}}</td>
   <td>{{Spec2('DOM3 Core')}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>

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