delete() method removes the specified element from a WeakSet 对象。

The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.

句法

ws.delete(value);
					

参数

value
Required. The object remove from the WeakSet 对象。

返回值

true if an element in the WeakMap object has been removed successfully. false if the key is not found in the WeakMap or if the key is not an object.

范例

使用 delete 方法

var ws = new WeakSet();
var obj = {};
ws.add(window);
ws.delete(obj);    // Returns false. No obj found to be deleted.
ws.delete(window); // Returns true.  Successfully removed.
ws.has(window);    // Returns false. The window is no longer present in the WeakSet.
					

规范

规范
ECMAScript (ECMA-262)
The definition of 'WeakSet.prototype.delete' in that specification.

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
Desktop Mobile Server
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet Node.js
delete Chrome 36 Edge 12 Firefox 34 IE No Opera 23 Safari 9 WebView Android 37 Chrome Android 36 Firefox Android 34 Opera Android 24 Safari iOS 9 Samsung Internet Android 3.0 nodejs 0.12

图例

完整支持

完整支持

不支持

不支持

另请参阅

元数据

  • 最后修改: