jQuery Ajax 实例代码 ($.ajax、$.post、$.get)(2)

 $(function(){   $('#send').click(function(){   $.ajax({   type: "GET",   url: "test.json",   data: {username:$("#username").val(), content:$("#content").val()},   dataType: "json",    success: function(data){    $('#resText').empty(); //清空resText里面的所有内容    var html = '';    $.each(data, function(commentIndex, comment){    html += '' + comment['username']+ ':+ ''; });    $('#resText').html(html);    }   });    });   });

顺便说一下$.each()函数:

$.each()函数不同于JQuery对象的each()方法,它是一个全局函数,不操作JQuery对象,而是以一个数组或者对象作为第1个参数,以一个回调函数作为第2个参数。回调函数拥有两个参数:第1个为对象的成员或数组的索引,第2个为对应变量或内容。

以上这篇jQuery Ajax 实例代码 ($.ajax、$.post、$.get)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzpppp.html