IntersectionObserver 方法 unobserve() instructs the IntersectionObserver to stop observing the specified target element.

句法

IntersectionObserver.unobserve(target);
					

参数

target
元素 to cease observing. If the specified element isn't being observed, this method does nothing and no exception is thrown.

返回值

undefined .

范例

This snippet simply shows an observer being created, an element being observed, and then being unobserved.

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

规范

规范 状态 注释
Intersection Observer
The definition of 'IntersectionObserver.unobserve()' in that specification.
工作草案 初始定义。

浏览器兼容性

更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
unobserve Chrome 51 Edge 15
15
Available since Windows Insider Preview Build 14986
Firefox 55
55
不支持 53 — 55 Disabled
Disabled ). To change preferences in Firefox, visit
IE No Opera Yes Safari 12.1 WebView Android 51 Chrome Android 51 Firefox Android ? Opera Android ? Safari iOS 12.2 Samsung Internet Android 5.0

图例

完整支持

完整支持

不支持

不支持

兼容性未知 ?

兼容性未知

实验。期望将来行为有所改变。

实验。期望将来行为有所改变。

见实现注意事项。

用户必须明确启用此特征。

用户必须明确启用此特征。

另请参阅

元数据

  • 最后修改: