为了账号安全,请及时绑定邮箱和手机立即绑定

Jquery中常用的AJax的方法有哪几个

Jquery中常用的AJax的方法有哪几个

慕尼黑5688855 2019-03-03 04:04:35
Jquery中常用的AJax的方法有哪几个 
查看完整描述

4 回答

?
慕田峪7331174

TA贡献1828条经验 获得超13个赞

第一种:
$.ajax({
type: "POST",
url: "ShowProduct.aspx/GetDHList",
data: '{CategoryId:"' + CategoryId + '"}',
contentType: "application/json;charset=utf-8",
dataType: "json",
success: function (data) {
var item = eval(data.d);
var StrHtml = "";
for (var i in item) {}
}, async: false
});
第二种:
$(document).ready(function(){
$("#b01").click(function(){
htmlobj=$.ajax({url:"/jquery/test1.txt",async:false});
$("#myDiv").html(htmlobj.responseText);
});
});

第三种:
$.ajax({ url: "test.html", context: document.body, success: function(){
$(this).addClass("done");
}});



查看完整回答
反对 回复 2019-03-14
?
潇潇雨雨

TA贡献1833条经验 获得超4个赞

  1. $.ajax({
     url: "test.html",
     cache: false,
     success: function(html){
       $("#results").append(html);
     }
    });

  2. $("#feeds").load("feeds.php", {limit: 25}, function(){
      alert("The last 25 entries in the feed have been loaded");
    });

  3. $.get("test.cgi", { name: "John", time: "2pm" },
     function(data){
       alert("Data Loaded: " + data);
     });

  4. $.post("test.php", { name: "John", time: "2pm" },
      function(data){
        alert("Data Loaded: " + data);
      });



查看完整回答
反对 回复 2019-03-14
?
largeQ

TA贡献2039条经验 获得超7个赞

(jquery.object).load()、$.get()、$.post、$.ajax()

查看完整回答
反对 回复 2019-03-14
  • 4 回答
  • 0 关注
  • 569 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信