JSP JSF1.2中如何跟踪网页的变化

发布于 2024-10-10 20:52:49 字数 224 浏览 3 评论 0原文

我正在 JSP/JSF 中开发一个网页。它有一些文本字段和复选框。页面有“保存”按钮和很少的其他页面链接。在保存按钮的时钟上,信息被保存在数据库中。当用户单击此链接时,控件将重定向到相应的页面。

当用户单击其他页面的链接时,我想检查用户是否更改了任何测试框、下拉列表、复选框。如果用户更改了任何字段,我想向用户提示一条消息,表明他已更改信息但未保存。

您能帮助我如何实现这一点吗?

谢谢

I am developing a web page in JSP/JSF. It has some text fields and check boxes. Page has Save button and few links to other pages. On clock of save button, information is saved in database. when user clicks on one this links, control is redirected to respective page.

When user clicks on links to other pages I would like to check, whether User has changed any test box, Drop down list, check box or not. If user has changed any field I would like to prompt a message to user that He has changed information and it is not saved.

Could you please help me how to implement this.

Thanks

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

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

发布评论

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

评论(1

末骤雨初歇 2024-10-17 20:52:49

在 Sava 按钮的 onClick 中使用 (#JSFManagedBeanName.MethodName)通过该方法,您可以访问整个 JSF 页面的数据。

对于 JSF 2.0,请使用 JSF 验证。对于,参考

<h:commandLink id="next" action="#{BeanName.MethodName}">
   <h:outputText value="Next Page" />
</h:commandLink>

将您的验证放入 MethodName Method 中。

Use (#JSFManagedBeanName.MethodName) in onClick of the Sava Button & from that method, you can access the data of the whole JSF page.

In case of JSF 2.0, use JSF Validation. For, refernce.

<h:commandLink id="next" action="#{BeanName.MethodName}">
   <h:outputText value="Next Page" />
</h:commandLink>

Put your validations in MethodName Method.

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