当前位置: 首页 > Web前端 > HTML

监控localStorage,重写setItem

时间:2023-03-28 19:24:00 HTML

鎶€鏈褰曞垎浜煈嘽onstsetItem=localStorage.setItemlocalStorage.setItem=function(name,value){setItem.apply(this,arguments)varevent=newEvent('setItem')浜嬩欢銆俴ey=nameevent.value=valuewindow.dispatchEvent(event);}//椤甸潰浣跨敤window.addEventListener('setItem',function(e){console.log(e);})setInterval(()=>{localStorage.setItem('aaa',JSON.stringify({a:Math.random()}))},3000)