jsp中给字符串变量赋值

发布于 2024-10-21 05:06:03 字数 123 浏览 1 评论 0原文

有什么方法可以将文本字段中的值分配给 jsp/java 字符串变量而不提交表单吗?

IE

我需要分配 <%String s="";%>//这意味着它必须保存 xyz 值而不提交按钮。

Is the any way to assign a value from the text field to a jsp/java String variable with out submitting the form ?

i.,e

i need to assign <%String s="";%>//that means it must hold xyz value with out submitting the button.

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

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

发布评论

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

评论(1

杯别 2024-10-28 05:06:03

不提交表格?嗯,不可能。文本字段值位于客户端,而 JSP scriptlet 位于服务器端。为了使用文本字段值在 JSP scriptlet 中设置值,您需要提交表单。

Without submitting the form? Well, not possible. The text field value is on the client side while the JSP scriptlet is on the server side. In order for you to set a value in the JSP scriptlet using the text field value, you will need to submit the form.

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