function ajaxcompany(pageindexcount) { var data = { categorycode: "hqxw", pageindexcount: pageindexcount }; ajaxaction("/ajaxlistbypage.aspx", data); } function ajaxaction(url, data) { $.ajax({ type: "post", url: url, data: data, datatype: "html", cache: false, async: false, success: function (result) { $(".zi-more").remove(); $(".news-list").append(result); } }); }