浏览器关闭怎么清除localstorage。 因为sessionstorage不能跨窗口,所以用localstorage,但是又想实现关闭浏览器清除localstorage的功能。 请问有没有什么方法实现。。或是有什么其他方法替代localstorage。
................ 补充:sorry,我看错了,其实方法都差不多,我写的是react 具体的就是使用窗口浏览器关闭事件。 这个react写的亲测有效,我测试过了。我再写一个js吧。 window.onunload=function(){ localStorage.clear(); componentDidMount() { window.addEventListener('unload', this.handleUnload); componentWillUnmount() {