报告:url 属性

urlReport 接口的只读属性,返回生成报告的文档的 URL。

表示生成报告的文档 URL 的字符串。

示例

js
const options = {
  types: ["deprecation"],
  buffered: true,
};

const observer = new ReportingObserver(([firstReport], observer) => {
  // Log the URL of the document that generated the first report
  // e.g. "https://www.example.com/cats.html"
  console.log(firstReport.url);
}, options);

规范

规范
Reporting API
# dom-report-url

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参见