以下代码在 FF 中有效,但在 Chrome 中无效:
history.replaceState({ obj: 'pushed on' }, 'unused', '');
alert(history.state.obj);
有什么方法可以history.state
在 Chrome 中工作吗?
history.replaceState({ obj: 'pushed on' }, 'unused', '');
alert(history.state.obj);
有什么方法可以history.state
在 Chrome 中工作吗?