﻿$(document).ready(function () {    
    var n = encodeURI(encodeURI("热点新闻"));
    var m = encodeURI(encodeURI("新闻列表"));
    var o = encodeURI(encodeURI("博客观点"));
    $.get("/content/index.aspx",{column:n},function (data) {
        $("#hotnews_content_box").html(data);
    });
    $.get("/content/index.aspx", { column: m }, function (data) {
        $("#list_content").html(data);
    });
    $.get("/content/index.aspx", { column: o }, function (data) {
        $("#blog_content").html("<h2 id='blognews_heading'>博客</h2>"+data);
    });
     $.get("/content/hotbbs.ashx",function (data) {
        $("#bbs_content").html("<h2 id='hottopic_heading'>论坛热贴</h2>"+data);
    });
});

