Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

이 문서는 아직 자원 봉사자들이 한국어로 번역하지 않았습니다. 함께 해서 번역을 마치도록 도와 주세요!

The Document.documentURIObject read-only property returns an nsIURI object representing the URI of the document.

This only works for privileged (UniversalXPConnect) scripts, including extension code. For web content this property doesn't have any special meaning and can be used just like any other custom property.

Privileged code must be careful not to try getting or setting this property on a non-wrapped content object (e.g. on a wrappedJSObject of an XPCNativeWrapper). See bug 324464's comments for details.

Syntax

var uri = doc.documentURIObject;

Example

// Check that the URI scheme of the current tab in Firefox is 'http',
// assuming this code runs in context of browser.xul
var uriObj = content.document.documentURIObject;
var uriPort = uriObj.port;

if (uriObj.schemeIs('http')) {
  ...
}

Specifications

Not part of any specification.

문서 태그 및 공헌자

 이 페이지의 공헌자: teoli, MHasan, kscarfone, nehasharma, Sheppy, ziyunfei, Mgjbot, Shoot, Nickolay, Waldo
 최종 변경: teoli,