Google Chrome 页面刷新后控制台保留

Google Chrome Console Keep after page refresh

我正在使用这段代码来刷新页面并显示消息。

setInterval(function() { alert ("Reloading"),location.reload() },2000);

我怎样才能保存代码以便它在刷新后继续 运行?

一种方法是将当前变量(当前状态)保存到 cookie,刷新后只需将 cookie 中的变量加载到您的代码中。