aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/location/ancestororigins/index.md
blob: 244b64c41cf8259287557be294f5c18bb29da984 (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
---
title: 'Location: ancestorOrigins'
slug: Web/API/Location/ancestorOrigins
tags:
  - API
  - Location
  - Property
  - Reference
browser-compat: api.Location.ancestorOrigins
---
{{APIRef("Location")}}

{{domxref("Location")}}接口的 **`ancestorOrigins`** 只读属性是一个静态的{{domxref("DOMStringList")}},倒序排列了此{{domxref("Location")}}对象所属文档先前所有浏览上下文的来源。

你可以在脚本中使用`location.ancestorOrigins`来检测你的网页是否被你不希望的对象嵌入了。你也可以使用它让网页在被特定站点嵌入时做出不同的表现。

## 语法

```js
const ancestors = location.ancestorOrigins;
```

## 规范

{{Specifications}}

## 浏览器兼容性

{{Compat}}