油猴阿贾克斯还记得页面吗?
我将 jquery 加载到 Greasemonkey 脚本中,当用户单击开始按钮时,脚本会发出一堆 Ajax 调用。然后我清空正文并附加数据。当我单击某些内容并回击而不是获取页面发布脚本时,我会丢失所有数据并且需要再次运行 ajax 调用(运行可能需要几秒钟)。我怎样才能让它不丢失更改?
I load jquery into my greasemonkey script and when the user clicks the start button the script makes a bunch of ajax calls. I then empty body and append data. When i click on something and hit back instead of getting the page post script i lose all the data and need to run the ajax calls again (it can take seconds to run). How do i make it not lose the changes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GM_setValue 可以解决问题吗?
Will GM_setValue do the trick?
使用 GM_setValue("valuename",value) 保存一些数据并使用 GM_getValue('valuename') 获取该数据应该可以达到您想要的效果。
Using GM_setValue("valuename",value) to save some data and GM_getValue('valuename') to get that data should achieve what you want.