Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在 jsp 中有 2 个输入字段并且我希望它们始终保持同步,我知道解决方案。为每个输入字段编写一个 onchange 事件并调用一个函数。此功能将同步这两个字段。
现在在我的情况下,两个输入字段位于两个不同的 jsps 中。它们都包含在第三个jsp中。是否仍然可以同步字段?
如果两个 jsps 都生成一个 html 页面,那么在客户端你仍然在处理一个页面。有问题的方法应该在那里工作。
在会话中设置一个属性,并在任何你想使用的地方使用这个值,
session.setAttribute("userName",userName); session.getAttribute("userName");