jQuery 中的 Ajax
jQuery 中的 Ajax
function(XMLHttpRequest){ this; //调用本次ajax请求时传递的options参数 }
function(XMLHttpRequest, textStatus){ this; //调用本次ajax请求时传递的options参数 }
案例代码:
$(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 += '<div><h6>' + comment['username'] + ':</h6><p' + comment['content'] + '</p></div>'; }); $('#resText').html(html); } }); }); }); jQuery 中 Ajax 的使用$.ajax({ type : 'get', url : 'getCode.php', data : {'mobile' : phone}, dataType : 'json', beforeSend : function(){ }, success : function(info){ } });