javascript与jsp发送请求到servlet的几种方式实例
作者:wdc 时间:2023-06-15 15:59:30
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>
标签:JavaScript,jsp,servlet
0
投稿
猜你喜欢
利用python实现.dcm格式图像转为.jpg格式
2021-08-28 04:16:35
ajax中get和post的说明及使用与区别
2024-04-29 13:58:17
python 合并列表的八种方法
2022-06-10 10:07:29
vux-scroller实现移动端上拉加载功能过程解析
2024-05-09 10:42:21
jupyter notebook 重装教程
2022-07-20 09:38:02
爬虫Python验证码识别入门
2021-01-31 15:31:19
Python实现的字典值比较功能示例
2022-06-29 03:40:41
Python中bytes和str的区别与联系详解
2022-04-18 18:36:57
微信应用号(小程序)入门安装教程及IDE(破解版)下载
2022-05-30 02:07:52
Python标准库os.path包、glob包使用实例
2021-09-04 13:49:03
Django uwsgi Nginx 的生产环境部署详解
2023-10-21 14:55:30
golang db事务的统一封装的实现
2023-07-02 21:01:51
Python中的协程(Coroutine)操作模块(greenlet、gevent)
2021-01-17 12:24:25
python一键去抖音视频水印工具
2023-09-26 22:58:21
PHP如何实现HTTP验证
2023-09-04 05:32:46
Python标准库inspect的具体使用方法
2023-05-30 08:00:37
打开电脑上的QQ的python代码
2022-08-18 04:21:28
python在CMD界面读取excel所有数据的示例
2023-03-14 12:36:51
[译]Javascript风格要素(一)
2008-02-28 12:58:00
基于python实现把图片转换成素描
2022-01-01 23:11:11