多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
$.post("#", { id:i, }, function (data) { var result = JSON.parse(data); console.log(result); } ); ============ $.ajax({ type: 'POST', url: url, data: data, success: success, dataType:'json', success:function(data){ var item; item=data.list[0].item; $("#divp").html(item); } }); ============= 获得 test.php 页面返回的 json 格式的内容: $.post("test.php", { "func": "getNameAndTime" }, function(data){ alert(data.name); // John console.log(data.time); // 2pm }, "json"); ===============