UserDataHandler - Web APIs 编辑
Obsolete since Gecko 26 (Firefox 26 / Thunderbird 26 / SeaMonkey 2.23 / Firefox OS 1.2)
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
Summary
When associating user data with a key on a node, Node.setUserData()
can also accept, in its third argument, a handler which will be called when the object is cloned, imported, deleted, renamed, or adopted. Per the specification, exceptions should not be thrown in a UserDataHandler
. In both document.importNode()
and Node.cloneNode()
, although user data is not copied over, the handler will be called.
Properties
None.
Methods
handle (operation, key, data, src, dst)
(no return value)
This method is a callback which will be called if a node is being cloned, imported, renamed and as well, if deleted or adopted.
operation
(unsigned short) is an operation type integer (see below).key
(DOMString
) is the user key.data
(DOMUserData
) is the user data.src
(Node
) is the source node (null
if being deleted).dst
(Node
) is the destination node (if any, ornull
).
Constants
Constant | Value | Operation |
---|---|---|
NODE_CLONED | 1 | Node.cloneNode() |
NODE_IMPORTED | 2 | Document.importNode() |
NODE_DELETED Unimplemented (see bug 550400) | 3 | |
NODE_RENAMED Unimplemented | 4 | Node.renameNode() |
NODE_ADOPTED | 5 | Document.adoptNode() |
(NODE_RENAMED
is currently not supported since Node.renameNode()
is not supported.)
Specifications
DOM Level 3 Core: UserDataHandler
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论