js 通过监听storage事件,多页面之间实时数据共享 事件始发文件: 123456789101112131415161718<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title></head><body> <input type="text"> <script> const input=document.querySelector('input'); input.onkeyup=()=>{ localStorage.setItem("test",input.value); } </script></body></html> 事件接收文件: 12345678910111213141516171819202122<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title></head><body> <script> //事件监听写法: window.addEventListener("storage",(e)=>{ console.log(e) console.log("新值:",e.newValue) }) //普通事件写法: /* window.onstorage=(e)=>{ console.log(e) console.log("新值:",e.newValue) }*/ </script></body></html> 效果: javascript #js #javascript js 通过监听storage事件,多页面之间实时数据共享 https://github.com/chergn/chergn.github.io/63d9ea3da13e/ 作者 全易 发布于 2024年3月28日 许可协议 js 选项卡 Tab切换 上一篇 js 键盘码 下一篇