JavaScript与jsp提交至servlet的几种方式

JavaScript与jsp提交至servlet的几种方式

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>

原文链接: https://www.jb51.net/article/136637.htm.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值