$(function () { SetMenu("新闻动态", "News") //新闻类别选择 $("ul.tab_bar li").click(function () { $(this).addClass("active").siblings().removeClass('active'); $(".p_tip,.text").text($(this).text()); window.location = "news.aspx?type=" + $(this).attr("id"); //GetNewsInfo($(this).attr("id"), 1); }) /////分页 //$("ul.pagination").on("click", "li", function () { // GetNewsInfo($("ul.tab_bar li.active").attr("id"), $(this).index()); //}) /////上一页 //$("ul.pagination").on("click", ".pre", function () { // if ($("ul.pagination li.active").text() != 1) { // GetNewsInfo($("ul.tab_bar li.active").attr("id"), ($("ul.pagination li.active").text() - 1)); // } //}) /////下一页 //$("ul.pagination").on("click", ".next", function () { // if ($("ul.pagination li.active").text() != $("ul.pagination li").length) { // GetNewsInfo($("ul.tab_bar li.active").attr("id"), parseInt($("ul.pagination li.active").text()) + 1); // } //}) }) function GetNewsInfo(typeid, page) { $.post("/Tools/NewsInfo/GetNewsInfo.ashx", { typeid: typeid, page: page }, function (data) { $(".newsbody .row").html(data.content); $(".pagination").html(data.pagination); }, "json") }