From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../api/intersectionobserver/unobserve/index.html | 69 ++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 files/zh-cn/web/api/intersectionobserver/unobserve/index.html (limited to 'files/zh-cn/web/api/intersectionobserver/unobserve') diff --git a/files/zh-cn/web/api/intersectionobserver/unobserve/index.html b/files/zh-cn/web/api/intersectionobserver/unobserve/index.html new file mode 100644 index 0000000000..ba62faf1cd --- /dev/null +++ b/files/zh-cn/web/api/intersectionobserver/unobserve/index.html @@ -0,0 +1,69 @@ +--- +title: IntersectionObserver.unobserve() +slug: Web/API/IntersectionObserver/unobserve +tags: + - API + - Intersection + - unobserve +translation_of: Web/API/IntersectionObserver/unobserve +--- +
unobserve()方法命令IntersectionObserver停止对一个元素的观察。
+ +

语法

+ +
IntersectionObserver.unobserve(target);
+ +

参数

+ +
+
target
+
要取消观察的目标,如果没有提供,方法不做任何事情,也不会抛出异常。
+
+ +

返回值

+ +

undefined.

+ +
+
+ +

例子

+ +

下面代码段展示了一个观察器被创建,一个元素被观察,以及取消观察的过程。

+ +
var observer = new IntersectionObserver(callback);
+observer.observe(document.getElementById("elementToObserve"));
+
+/* ... */
+
+observer.unobserve(document.getElementById("elementToObserve"));
+ +

说明

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('IntersectionObserver','#dom-intersectionobserver-unobserve','IntersectionObserver.unobserve()')}}{{Spec2('IntersectionObserver')}}Initial definition.
+ +

浏览器兼容性

+ + + +

{{Compat("api.IntersectionObserver.unobserve")}}

+ +

另请参阅

+ + -- cgit v1.2.3-54-g00ecf