我有以下代码:
code here: <input type='text' id='2' value='10:00' />
这是一个带有预填充数据的可编辑文本框字段。每当用户输入新值时,如何在 jsp 中获取文本框的新值。请帮忙。
我有以下代码:
code here: <input type='text' id='2' value='10:00' />
这是一个带有预填充数据的可编辑文本框字段。每当用户输入新值时,如何在 jsp 中获取文本框的新值。请帮忙。
尝试这个 。
<input type='text' id='2' value='10:00' onkeyup="get(this)"/>
在 head 标签中使用这个脚本
<script>
function get(text)
{
var input = text.value;
alert(input); //displaying the value
}
</script>
假设您有以下 jsp(将名称添加到您的输入),假设您将此表单提交给同一个 jsp(即someAction.jsp
,尽管它应该是 servlet 或控制器)。
<form action="someAction.jsp">
<input type='text' name='myName' id='2' value='10:00' />
<input type='submit' value="Submit">
</form>
然后单击提交按钮,您可以在 jsp/servlet/controller 中获取此变量 myName:
// this will be value of this textbox
// what user entered (as I understand you would like to know that).
String someVar = request.getParameter("myName");