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.

document.documentURIObject

概述

该属性返回一个nsIURI 对象,值为当前文档的URI.

该属性只能在拥有UniversalXPConnect特权的代码中运行,比如扩展中的代码.如果是web页面中的代码,则该属性默认不存在,必须开启UniversalXPConnect特权才可用.

使用特权代码必须小心,不要在一个non-wrapped的content对象上使用该属性 (比如一个XPCNativeWrapper方法处理过的wrappedJSObject). 查看 bug 324464 了解详情

语法

var uri = doc.documentURIObject;

例子

// 检测Firefox当前标签中的页面的URI协议是否为'http',
// 下面的代码必须运行在browser.xul上下文上.
var uriObj = content.document.documentURIObject;
var uriPort = uriObj.port;

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

规范

不属于任何公开的规范.

文档标签和贡献者

 此页面的贡献者: teoli, AshfaqHossain, ziyunfei
 最后编辑者: AshfaqHossain,