jsp中给字符串变量赋值
有什么方法可以将文本字段中的值分配给 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不提交表格?嗯,不可能。文本字段值位于客户端,而 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.