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.
我不确定这可能吗?但是,我在 html 页面中有一个标签。
<label name='example'>Page 1</label>
从控制器进入另一个页面后,我想将标签值更新为其他值servlet:
servlet
<label name='example'>Page 2 (update being update from servlet)</label>
谁能理解我的问题和帮助?
无法直接更新它,因为 Page 2 的 servlet 只能写入对 Page 2 的响应。
但是,您可以使用 session 在页面之间共享/更新数据,更新第 2 页中的 session 变量并每隔几秒自动刷新第一个页面以反映该更改。
但是,如果您正在打开子窗口,那么您可以使用子窗口上的 JavaScript 来更新父页面上的项目。