跳转到index.html ②通过超链接传值跳转到a.jsp获取
赞
踩
1.表单提交的两种方式以及区别?
get:数据会显示在地址栏上,数据量小,安全性低
post:相反。
2.request可以接收哪两种方式的值?
①通过form表单
<form action="index.html" method = "post">跳转到index.html</form>
②通过超链接传值
<a href = "a.jsp?username=admin&password=123">跳转到a.jsp获取</a>
3.页面跳转的两种方式以及区别?
4.js的跳转属于哪一种?
out.print("<script>alert('账号或密码错误');location.href='login.jsp'</script>");
属于重定向
5.为什么要设置request的编码方式?如何设置?
request.setCharacterEncoding("utf-8");
为了防止乱码
6.如何接收表单传过来的各种类型的值?
request.getParameter("name
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。