在tiles中刷新jsp

发布于 2024-11-18 18:59:12 字数 101 浏览 1 评论 0原文

我正在使用 jsp 和图块创建一个网页。我的问题是我的tiles页面中有一个timer.jsp属性,它的作用就像一个倒计时器。我希望它的值在刷新页面时保持不变。无论如何我可以做到这一点吗?

I am creating a webpage using jsp and tiles. My issue is that I have a timer.jsp attribute in my tiles page which acts like a countdown timer. I want its value to remain unchanged on refreshing the page. Is there anyway I can do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放飞的风筝 2024-11-25 18:59:12

为了在刷新时保留客户端计时器的值,您必须通过 ajax 将其存储在会话中。类似于(使用 jQuery):

$.post("storeInSession", {value: $("#item").val()});

其中 /storeInSession 映射到 servlet(或操作,取决于所使用的框架),它获取 value 请求参数并设置为会话属性。

In order to preserve the value of a client-side timer across refreshed you have to store it in the session via ajax. Something like (with jQuery):

$.post("storeInSession", {value: $("#item").val()});

where /storeInSession is mapped to a servlet (or action, depending on the framework in use) which gets the value request parameter and sets in as session attribute.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文