欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ajax的多种实现方式

程序员文章站 2022-07-14 14:27:04
...
	$.ajax({
        url:"/ajaxServlet",//请求路径
        type:"post",//请求方式
        data:"username=coco&age=12",//请求参数	
        success:function(obj){ //请求成功 执行方法
            //obj 表示 接收 服务器回写的内容
        },
        error:function(){//请求失败 执行方法
        },
        dataType:"json" //服务器响应的数据格式
    });

使用$.get()提交请求
语法:$.get(url, [data], [callback], [type])
url:待载入页面的URL地址
data:待发送 Key/value 参数。
callback:载入成功时回调函数。
type:返回内容格式,xml, html, script, json, text, _default

	$.get("/ajaxServlet","username=coco",function (obj) {

     },"text");

使用$.post()提交请求
语法:$.post(url, [data], [callback], [type])
url:待载入页面的URL地址
data:待发送 Key/value 参数。
callback:载入成功时回调函数。
type:返回内容格式,xml, html, script, json, text, _default

	 $.post("/ajaxServlet","username=coco",function (obj) {

     },"text")