jsp页面提交
<inputtype="text"name="name1"><inputtype="button"name="button1"value="查询"onclick="loc...
<input type="text" name="name1" >
<input type="button" name="button1" value="查询" onclick="location.href='http://localhost:8080/test/servlet/qqServlet'" ><br>
上面是jsp里的一段代码,然后再qqServlet中 String date = request.getParameter("name1");
System.out.println(date);
结果输出的是null。我感到很奇怪,为什么会得不到文本框实际输入的那个值
<input type="text" name="name1" >
<input type="button" name="button1" value="查询" onclick="location.href='http://localhost:8080/test/servlet/qqServlet?name1=<%=name1 %>'" >为什么还不行呢 展开
<input type="button" name="button1" value="查询" onclick="location.href='http://localhost:8080/test/servlet/qqServlet'" ><br>
上面是jsp里的一段代码,然后再qqServlet中 String date = request.getParameter("name1");
System.out.println(date);
结果输出的是null。我感到很奇怪,为什么会得不到文本框实际输入的那个值
<input type="text" name="name1" >
<input type="button" name="button1" value="查询" onclick="location.href='http://localhost:8080/test/servlet/qqServlet?name1=<%=name1 %>'" >为什么还不行呢 展开
2个回答
展开全部
晕倒....
你这样写要用 form 提交!
<form method="post" action="http://localhost:8080/test/servlet/qqServlet">
<input type="button" name="button1" value="查询" />
<input type="submit" name="submit" value="submit" />
</form>
如果不是这样用链接跳过去的话...是localhost:8080/test/servlet/qqServlet?value="123"
类似的提交..
你这样写要用 form 提交!
<form method="post" action="http://localhost:8080/test/servlet/qqServlet">
<input type="button" name="button1" value="查询" />
<input type="submit" name="submit" value="submit" />
</form>
如果不是这样用链接跳过去的话...是localhost:8080/test/servlet/qqServlet?value="123"
类似的提交..
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询