﻿/// <reference path="jquery-1.3.2-vsdoc2.js" />
$(document).ready(function () {
    $(".titlecity").append("<table><tr><td><h1><span><samp>C</samp>ity </span></h1></td><td><span class='hz'>所在城市</span></td><tr></table>");
    var bg = " color:Red;";
    $.ajax({
        type: "Post",
        url: "index.aspx/loadSchool",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (data) {
            var html = "<table style=' margin-left:5px'><tr>";
            var flage = 0;
            $(data.d).each(function () {
                var onlinebg;
                if (this["online"] == "1") {
                    onlinebg = bg;
                } else {
                    onlinebg = "";
                }
                flage++;
                if (flage % 3 == 0) {

                    html = html + "<td ><a href='" + this["Url"] + "'  style='" + onlinebg + "'>" + this["SchoolName"] + "</a></td></tr><tr>";
                    flage = 0;
                }
                else {
                    html = html + "<td ><a href='" + this["Url"] + "'  style='" + onlinebg + "'>" + this["SchoolName"] + "</a></td><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>";
                }
            })
            html = html + "</tr></table>";

            $("#toptable").append(html);
        }
    })
})
