首页 > Web开发 > 详细

jQuery封装的ajax操作

时间:2014-07-22 22:52:08      阅读:351      评论:0      收藏:0      [点我收藏+]

jQuery中ajax请求有三种操作方式$.get()  $.post()  $.ajax()

get和post(是对$.ajax的封装)

//不传递数据
$.get("./16.php",function(msg){
        alert(msg);
});

//给服务器传递数据
$.get("./16.php",{name:‘tom‘,age:23},function(msg){
        alert(msg);
});

//用法与get方法类似
$.post("./16.php",{},function(){});

 

$.ajax是jQuery底层的ajax方法

$.ajax({
    url:"./16.php",
    data:"name=tom&addr=beijing&age=23",
    dataType:‘text‘,
    async:false,
    type:‘post‘,
    success:function(msg){
        //ajax请求成功后要执行这个的代码
        alert(msg);
    }
});

  

jQuery封装的ajax操作,布布扣,bubuko.com

jQuery封装的ajax操作

原文:http://www.cnblogs.com/zixueit/p/3855227.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!