加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

AJAX 通用与服务器段交互代码范例 客户端传入参数-----请求servl

发布时间:2020-12-16 00:57:57 所属栏目:百科 来源:网络整理
导读:html head base href="%=basePath%" titleMy JSP 'ajax2.jsp' starting page/title meta http-equiv="pragma" content="no-cache"meta http-equiv="cache-control" content="no-cache"meta http-equiv="expires" content="0" meta http-equiv="keywords" con
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'ajax2.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->
	<script type="text/javascript" src="jquery-1.10.2.js"></script>
	<script type="text/javascript">
		$(function(){
			
			$("#btn").click(function(){

				$.ajax({
					
					type:"POST",url:"AjaxServlet",dataType:"html",data:{"param1":$("#param1").val(),"param2":$("#param2").val()},success: function(returnData){

						$("#result").val(returnData);
					}

				});
			});
		});
	
	
	</script>

  </head>
  
  <body>
	<input type="text" id="param1">+
	<input type="text" id="param2">=
	<input type="text" id="result">
	<input type="button" id="btn" value="get value from server">

 
  </body>
</html>
 
package com.sun.servlet;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class AjaxServlet extends HttpServlet {

	@Override
	protected void doGet(HttpServletRequest req,HttpServletResponse resp)
			throws ServletException,IOException {
		
		PrintWriter out = resp.getWriter();
		System.out.println("do get invoked");
		
		int param1 = Integer.parseInt(req.getParameter("param1"));
		int param2 = Integer.parseInt(req.getParameter("param2"));
		
		
		out.write(String.valueOf(param1 + param2));
		out.flush();
	
	}
	
	@Override
	protected void doPost(HttpServletRequest req,IOException {
				
			this.doGet(req,resp);
	}

}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读