时间:2021-05-19
JavaScript提交至servlet 5种方式:
/**第一种提交方式 * */function submitForm1(){ window.location.href="TestServlet?param=hrefMethod" rel="external nofollow" ;}/**第二种提交方式 * */function submitForm2(){ var form=document.forms[0]; form.action="TestServlet?param=formMethod"; form.submit();}/** *第三种提交方式 */var xmlHttp; //创建xmlHttp function createXMLHttpRequest(){ if (window.XMLHttpRequest){// code for IE7+, Firefox, Chrome, Opera, Safari xmlHttp=new XMLHttpRequest(); }else {// code for IE6, IE5 xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }} //Ajax使用get方式发送 function submitForm3(){ createXMLHttpRequest(); var queryString="TestServlet2?"; queryString=queryString+"¶m=" + new Date().getTime(); xmlHttp.onreadystatechange=handleStateChange; xmlHttp.open("GET",queryString,true); xmlHttp.send(null); } //Ajax使用post方式发送 function submitForm4(){ createXMLHttpRequest(); var url="TestServlet2?param=" + new Date().getTime(); xmlHttp.open("POST",url,true); xmlHttp.onreadystatechange=handleStateChange; xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); xmlHttp.send("nihao");} function handleStateChange(){ if(xmlHttp.readyState==4){ //解析返回值 if(xmlHttp.status==200){ var responseText=document.createTextNode(xmlHttp.responseText); alert("后台返回的返回值: "+xmlHttp.responseText); } } } /**第五种方式 post提交 * @param to * @param p */function submitForm5() { var myForm=document.createElement("form") var params={"param":"zs","param2":"li"}; myForm.method = "post"; myForm.action = "TestServlet"; myForm.style.display = "none"; for ( var k in params) { var myInput = document.createElement("input"); myInput.name= k; myInput.value= params[k]; myForm.appendChild(myInput); } document.body.appendChild(myForm); myForm.submit(); //document.body.removeChild(myForm); return myForm;}jsp提交至servlet的6种方式:
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><!-- 方式四 --><!-- <meta http-equiv="refresh" content="0; url=TestServlet?param=方式四"> --><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Insert title here</title></head><body><!-- 方式一 --><%-- <% RequestDispatcher rd = getServletContext().getRequestDispatcher("/TestServlet?param=方式一"); rd.forward(request, response);%> --%><!-- 方式二 --><%-- <% response.sendRedirect("TestServlet?param=方式二");%> --%><!-- 方式三 --><%-- <jsp:forward page="TestServlet?param=方式3"/> --%><!-- 方式五 --> <%-- <%int stayTime=0;String URL="TestServlet?param=Method 5";String content=stayTime+";URL="+URL;response.setHeader("REFRESH",content);%> --%><!-- 方式六 --><% response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY); String newLocation = "TestServlet?param=Method 6"; response.setHeader("Location",newLocation); %> </body></html>声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
jsp是html包含javaservlet是java包含htmljsp请求到tomcat---tomcat封装了jsp到servlet实现。所以jsp请求时候,
本文实例为大家分享了JavaWeb登陆功能的方法,供大家参考,具体内容如下首先我们要JavaWeb登陆的基本流程:JSP页面发送请求——>Servlet——>S
本文实例总结了jsp和servlet中实现页面跳转的方式。分享给大家供大家参考,具体如下:假设要求从test1.jsp跳转到test2.jsp一.jsp中跳转:
在一般情况下,可以从JSP页面或另一个servlet调用操作servlet,作为表单提交或链接激活的结果。根据请求的类型,该servlet重新从操作库中检索相应
一、JSP和Servlet的简单介绍1、Servlet和JSP简介:Java开发Web应用程序时用到的技术主要有两种,即Servlet和JSP,Servlet是