在jsp中本页面如何获取本页面表单里面的值 10
<formaction=""method="post"><inputname="aa"type="text"><inputname="username"type="sub...
<form action="" method="post" >
<input name="aa" type="text" >
<input name="username" type="submit" value="提交">
</form>
在本身页面如获取到 aa 的值 展开
<input name="aa" type="text" >
<input name="username" type="submit" value="提交">
</form>
在本身页面如获取到 aa 的值 展开
4个回答
展开全部
在jsp中写入JavaScript,点击提交时,<javascipt
var name=document.getElementByName("aa").value;
alert(name);
/javaScript>
var name=document.getElementByName("aa").value;
alert(name);
/javaScript>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用javascript啊。
var val=document.getElementByName("aa").value;
var val=document.getElementByName("aa").value;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你是不是想学JSP,但又省不得花钱买本书啊?
下面3个JSP文件是昨晚我刚从课本上抄下来的,希望对你有帮助。
文件example4_2.jsp的代码:
<%@ page contentType="text/html;Charset=GB2312" %>
<html><body bgcolor=cyan>
<form action="showMessage1.jsp" method="post" name="form">
<input type="text" name="boy">
<input type="submit" value="提交给showMessage1.jsp" name="submit">
</form>
<form action="showMessage2.jsp" method="post" name="form">
<input type="text" name="boy">
<input type="submit" value="提交给showMessage2.jsp" name="submit">
</form>
</body></html>
文件showMessage1.jsp的代码:
<%@ page contentType="text/html;Charset=GB2312" %>
<html><body bgcolor=cyan>
<p>获取文本框提交的信息:
<% String textContent = request.getParameter("boy");
%>
<br>
<%=textContent%>
<p>获取按钮的名字
<% String buttonName = request.getParameter("submit");
%>
<br>
<%=buttonName%>
</body></html>
文件showMessage2.jsp的代码:
<%@ page contentType="text/html;charset=GB2312" %>
<html><body bgcolor=cyan>
<p>获取文本框提交的信息:
<% String textContent = request.getParameter("boy");
byte b[] = textContent.getBytes("ISO-8859-1");
textContent = new String(b);
%>
<br>
<%=textContent%>
<p>获取按钮的名字
<% String buttonName = request.getParameter("submit");
byte c[] = buttonName.getBytes("ISO-8859-1");
buttonName = new String(c);
%>
<br>
<%=buttonName%>
</body></html>
关键代码解释说明:
showMessage1.jsp的第一行代码
<%@ page contentType="text/html;Charset=GB2312" %>
其中的Charset首字母大写,获取提交的中文数据就不会有乱码了。如果是小写,那就要用showMessage2.jsp中的那种方法把提交过来的数据重新编码。
为了避免在运行时Tomcat服务器让认为我们使用了空对象,应该使用类似下面代码处理变量,保证它不是空对象:
String textContent = request.getParameter("boy");
if (textContent == null) {
textContent = "";
}
下面3个JSP文件是昨晚我刚从课本上抄下来的,希望对你有帮助。
文件example4_2.jsp的代码:
<%@ page contentType="text/html;Charset=GB2312" %>
<html><body bgcolor=cyan>
<form action="showMessage1.jsp" method="post" name="form">
<input type="text" name="boy">
<input type="submit" value="提交给showMessage1.jsp" name="submit">
</form>
<form action="showMessage2.jsp" method="post" name="form">
<input type="text" name="boy">
<input type="submit" value="提交给showMessage2.jsp" name="submit">
</form>
</body></html>
文件showMessage1.jsp的代码:
<%@ page contentType="text/html;Charset=GB2312" %>
<html><body bgcolor=cyan>
<p>获取文本框提交的信息:
<% String textContent = request.getParameter("boy");
%>
<br>
<%=textContent%>
<p>获取按钮的名字
<% String buttonName = request.getParameter("submit");
%>
<br>
<%=buttonName%>
</body></html>
文件showMessage2.jsp的代码:
<%@ page contentType="text/html;charset=GB2312" %>
<html><body bgcolor=cyan>
<p>获取文本框提交的信息:
<% String textContent = request.getParameter("boy");
byte b[] = textContent.getBytes("ISO-8859-1");
textContent = new String(b);
%>
<br>
<%=textContent%>
<p>获取按钮的名字
<% String buttonName = request.getParameter("submit");
byte c[] = buttonName.getBytes("ISO-8859-1");
buttonName = new String(c);
%>
<br>
<%=buttonName%>
</body></html>
关键代码解释说明:
showMessage1.jsp的第一行代码
<%@ page contentType="text/html;Charset=GB2312" %>
其中的Charset首字母大写,获取提交的中文数据就不会有乱码了。如果是小写,那就要用showMessage2.jsp中的那种方法把提交过来的数据重新编码。
为了避免在运行时Tomcat服务器让认为我们使用了空对象,应该使用类似下面代码处理变量,保证它不是空对象:
String textContent = request.getParameter("boy");
if (textContent == null) {
textContent = "";
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询