$.ajax({ //一个Ajax过程 type: "post", //以post方式与后台沟通 url: "personstockajax.php", //与此php页面沟通 dataType: 'json', //从php返回的值以 JSON方式 解释 data: 'tid=' + tid + '&polar=' + polar + '&field=' + field + '&page=1', //发给php的请求数据 success: function(json) { for (var j = 0; j < json['titles'].length; j++) { $('#wrapper > #scroller > ul').append('
' + json['titles'][j] + '
$.post("request.php",{ data:txt }, function(result){ $("span").html(result); } );
$.post(" ",{ data:'1' },function(data){ alert(data); });