StorageEvent: initStorageEvent() 方法
已弃用:此功能不再推荐。虽然一些浏览器可能仍然支持它,但它可能已被从相关的 Web 标准中移除,可能正在被弃用,或者可能只保留为了兼容性。避免使用它,并尽可能更新现有代码;请查看此页面底部的兼容性表,以指导您的决策。请注意,此功能可能随时停止工作。
StorageEvent.initStorageEvent()
方法用于初始化StorageEvent
的值。
语法
js
initStorageEvent(type)
initStorageEvent(type, canBubble)
initStorageEvent(type, canBubble, cancelable)
initStorageEvent(type, canBubble, cancelable, key)
initStorageEvent(type, canBubble, cancelable, key, oldValue)
initStorageEvent(type, canBubble, cancelable, key, oldValue, newValue)
initStorageEvent(type, canBubble, cancelable, key, oldValue, newValue, url)
initStorageEvent(type, canBubble, cancelable, key, oldValue, newValue, url, storageArea)
参数
typeArg
-
事件的名称。
canBubble
可选-
一个布尔值,指示事件是否在 DOM 中冒泡。
cancelable
可选-
一个布尔值,指示事件是否可取消。
key
可选-
由于此事件而其值正在更改的键。
oldValue
可选-
键的旧值。
newValue
可选-
键的新值。
url
可选-
启动更改的文档的 URL。
storageArea
可选-
表示此事件发生的存储区域的
Storage
对象。
返回值
无 (undefined
).
规范
规范 |
---|
HTML 标准 # dom-storageevent-initstorageevent |
浏览器兼容性
BCD 表仅在浏览器中加载
另请参阅
- Web 存储 API
- 要使用此已弃用方法的构造函数:
StorageEvent()
.