草案
此页面不完整。
ContentIndexEvent()
构造函数创建新
ContentIndexEvent
object whose type and other options are configured as specified.
var ContentIndexEvent = new ContentIndexEvent(type, ContentIndexEventInit);
DOMString
indicating the event which occurred. For
ContentIndexEvent
, this is always
delete
.
ContentIndexEvent
object with. The options are:
id
: The id of the indexed content you want the
ContentIndexEvent
to remove.
A
ContentIndexEvent
object configured using the given inputs.
This examples constructs a new
ContentIndexEvent
with the relevant id.
var removeData = {
id : 'unique-content-id'
}
var ciEvent = new ContentIndexEvent('contentdelete', removeData);
ciEvent.id; // should return 'unique-content-id'
| 规范 | 状态 | 注释 |
|---|---|---|
|
未知
The definition of 'ContentIndexEvent' in that specification. |
未知 | 初始定义。 |
No compatibility data found. Please contribute data for "api.ContentIndexEvent.ContentIndexEvent" (depth: 1) to the MDN 兼容性数据存储库 .