|
发表于 2019-3-17 19:42:22
|
显示全部楼层
江苏省苏州市
//获取书评
function gotocomment(p) {
showcomment(p, commenttype);
}
function showcomment(p, obtype) {
commenttype = obtype;
currentpage = p;
var datas = "p=" + p;
datas += "&id=" + bookid;
datas += "&obtype=" + obtype;
datas += "&showmanage=" + commentshowmanage;
$.ajax({ url: '/ajax/getcomment.aspx', data: datas, type: 'POST', beforeSend: function () { $(".commentladingts").show(); $(".cloading").show(); }, error: function (request) { }, success: function (data) {
$(".cloading").hide();
$(".commentladingts").hide();
$(".commentcontent").html(data);
}
});
}
你搜索这个包:http://www.hengyan.com/ajax/getcomment.aspx
|
|