當(dāng)前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
JSP简单练习-获取表单数据
生活随笔
收集整理的這篇文章主要介紹了
JSP简单练习-获取表单数据
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
在JSP中,服務(wù)器端程序與客戶端交互最常用的方法就是采用表單提交數(shù)據(jù)。表單提交的方法主要有兩種,一種是get方法,另一種是post方法,兩者最大的區(qū)別:使用get方法提交的數(shù)據(jù)會顯示在瀏覽器的地址欄中,而post方法則不會顯示,故post方法更為常用。表單中提交的數(shù)據(jù)可以是文本框、列表框及文本區(qū)域等。使用request對象的getParameter()方法可得到表單中相應(yīng)數(shù)據(jù)項的值。
以下為“獲得表單數(shù)據(jù)”的代碼:
<!-- userRegist2.jsp --> <%@ page contentType="text/html;charset=gb2312" %> <script language="javascript">function on_submit() // 驗證數(shù)據(jù)的合法性{if(form1.username.value==""){alert("用戶名不能為空,請輸入用戶名!");form1.username.focus();return false;}if(form1.userpassword.value==""){alert("用戶密碼不能為空,請輸入密碼!");form1.userpassword.focus();return false;}if(form1.reuserpassword.value==""){alert("用戶確認(rèn)密碼不能為空,請輸入密碼!");form1.reuserpassword.focus();return false;}if(form1.userpassword.value!=form1.reuserpassword.value){alert("密碼與確認(rèn)密碼不同");form1.userpassword.focus();return false;}if(form1.email.value.length!=0){for(i=0;i<form1.email.value.length;i++){if(form1.email.value.charAt(i)=='@'){break;}}if(i==form1.email.value.length){alert("非法E-mail地址!");form1.email.focus();return false;}}else{alert("請輸入E-mail!");form1.email.focus();return false;}} </script> <html> <head> <title>新用戶注冊</title> </head> <body> <form method="POST" action="acceptUserRegist.jsp" name="form1" οnsubmit="return on_submit()"> 新用戶注冊<br> 用戶名(*):<input type="text" name="username" size="20"><br> 密?碼(*):<input type="password" name="userpassword" size="20"><br> 再輸一次密碼(*):<input type="password" name="reuserpassword" size="20"><br> 性別:<input type="radio" value="男" checked name="sex">男<input type="radio" name="sex" value="女">女<br> 出生年月:<input name="year" size="4" maxlength=4>年<select name="month"><option value="1" selected>1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option></select>月<input name="day" size="3" maxlength=4>日<br> 電子郵箱(*):<input name="E-mail" maxlength=28><br> 家庭住址:<input type="text" name="address" size="20"><br> <input type="submit" value="提交" name="B1"><input type="reset" value="全部重寫" name="B2"><br> </form> </body> </html> <!-- acceptUserRegist.jsp --> <%@ page contentType="text/html; charset=gb2312" %> <%!public String codeToString(String str){String s=str;try{/* 下面需注意:不能使用gb2312,需使用ISO-8859-1 */byte tempB[]=s.getBytes("ISO-8859-1");s=new String(tempB);return s;}catch(Exception e){return s;}} %> <html> <head> <title>接收新用戶注冊</title> </head> <body> 這是新用戶注冊所提交的數(shù)據(jù): <br> 用戶名是:<%=codeToString(request.getParameter("username")) %><br> 密碼是:<%=codeToString(request.getParameter("userpassword")) %><br> 性別是:<%=codeToString(request.getParameter("sex")) %><br> 出生年月:<%=request.getParameter("year")+request.getParameter("month")+request.getParameter("day") %><br> 電子郵箱:<%=request.getParameter("E-mail") %><br> 家庭住址:<%=codeToString(request.getParameter("address")) %><br> </body> </html>總結(jié)
以上是生活随笔為你收集整理的JSP简单练习-获取表单数据的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 阿里云MVP:如何设计实现一个通用的微服
- 下一篇: StackOverFlow优选的十条编程