ajax post与get

前端之家收集整理的这篇文章主要介绍了ajax post与get前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$.get('/baidu.com/ddd',{title_id: title_id,title_gid: title_gid,start_time: start_time,stop_time: stop_time,type: type},function (data,status) { }); $.ajax({ url: "www.baidu.com/ddd",data: {"p": get_p},type: "POST",dataType: "json",success: build }); function build(datas) { // alert(333333333) var table = ""; var ii = 1; for (var key in datas) {//表格数据 if (datas[key].nickname == undefined) { continue; } table += '<ul class="livepage">'; table += '<li class="commentimg">'; table += '<div>'; table += '</div></li></ul>'; ii = ii + 1; } $(".ajax").html(""); $('.ajax').append(table); $(".contentpage").html(""); $(".contentpage").append(datas['subPages']); } 原文链接:https://www.f2er.com/ajax/161700.html

猜你在找的Ajax相关文章