$.post(路径,参数,回调函数,数据类型);





$.post(url,[data],[callback],[type])

url:发送请求地址。

data:待发送 Key/value 参数。

callback:发送成功时回调函数。

type:返回内容格式,xml, html, script, json, text, _default。

$.post(url,[data],[callback],[type])

这个方法和$.get()用法差不多,唯独多了一个type参数,那么这里就只介绍type参数吧,其他的参考上面$.get()的。

type:type为请求的数据类型,可以是html,xml,json等类型,如果我们设置这个参数为:json,那么返回的格式则是json格式的,如果没有设置,就和$.get()返回的格式一样,都是字符串的。

最后写一个$.post()的实例供大家参考:


<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>




   
   
Insert title here

   
   
<script type="text/javascript" src="${pageContext.request.contextPath }/js/jquery-1.8.3.js"></script>

   
   
<script type="text/javascript" src="${pageContext.request.contextPath }/baidutest/search.js"></script>



   
   

百度一下

search.js $(function() { $("#word").keyup(function() { var word = $(this).val(); $.post("/Day19/baiduservlet",{"word":word}, function(data) { if(word != "") { $("#d1").show().html(data); } else { $("#d1").hide(); } }) }) }) info.jsp <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
${w.name }





servlet  (省略数据库操作)

public void init() throws ServletException {
    System.out.println("开始");
}
    
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        
        try {
            request.setCharacterEncoding("UTF-8");
            String word = request.getParameter("word");
            baiduservice service=new baiduservice();
            List<baidu> list = service.service(word);
            request.setAttribute("list", list);
            request.getRequestDispatcher("/baidutest/info.jsp").forward(request, response);
            
            
            
            
        } catch (SQLException e) {
        
            System.out.println(e);
            //像这个在catch中再throw new RuntimeException的,是为了中断程序,因为runtime的异常会中断程序,不再运行下去
            throw new RuntimeException();
        }
        
        
        
        
    }


    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        
        doGet(request, response);
    }

}





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值