日期:2014-05-16 浏览次数:20408 次
<%@ page contentType="text/html;charset=GB2312"%> <html> <head> <title>hello hah</title> </head> <body bgcolor="green"> <form action="" method="get" name=form> <input type="text" name="client" value="please input email"></input> <input type="submit" name=submit value="send"></input> </form> <%String str=request.getParameter("client"); if(str!=null){ int index=str.indexOf("@"); if(index==-1){ %> <br> 你的email地址中没有@ <% } else { int space=str.indexOf(" "); if(space!=-1){ %><br>你的email地址含有非法字符。 <% } else{ int start=str.indexOf("@"); int end =str.lastIndexOf("@"); if(start!=end){ %> <br> 你的email地址有两个以上的符号:@。 <%} else{ out.print("<br>"+str); %><br> 你的email地址书写正确。 <% } } } } %> </body> </html>
<form action="" method="get" name=form> <input type="text" name="client" value="please input email"></input> <input type="submit" name=submit value="send"></input> </form>
int index=str.indexOf("@"); if(index==-1){