window属性:onstorage
onstorage属性
该WindowEventHandlers.onstorage属性包含一个在storage事件触发时运行的事件处理程序。当更改存储区域时会发生这种情况(例如,存储新项目)。
onstorage属性语法
windowObj.onstorage = function(){...};
onstorage属性示例
window.onstorage = function(e) {
console.log('The ' + e.key + ' key has been changed from ' + e.oldValue + ' to ' + e.newValue + '.');
};
规范
规范 | 状态 | 注释 |
---|---|---|
HTML Living Standard
在该规范中定义'onstorage'。
|
Living Standard
|
浏览器兼容性
电脑端 | 移动端 | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome
|
Edge
|
Firefox
|
Internet Explorer
|
Opera
|
Safari(WebKit)
|
Androidwebview | Chrome for Android
|
Edge Mobile | Firefox for Android
|
Opera for Android
|
iOS Safari | |
基本支持 | ? | 支持 | 支持:45 | ? | ? | ? | 不支持 | 不支持 | 支持 | 支持:45 | ? | ? |