﻿$(document).ready(function () {
    init();
});
function init() {
    $.ajax({ type: "POST", cache: false,
        url: "ajaxpage.aspx", dataType: "json",
        data: { "t": "loginMsg" },
        success: function (data) {
            if (data.msg != "") {
                $("#notes").html(data.msg);
            }
            else {

                $("#notes").html("<li>您好，欢迎来到FCai</li><li><a href=\"/Users/Login.aspx\">请登录</a> |</li><li><a href=\"/Users/Register.aspx\">免费注册</a></li>");
            }
        },
        error: function () { $("#notes").html("<li>您好，欢迎来到FCai</li><li><a href=\"/Users/Login.aspx\">请登录</a> |</li><li><a href=\"/Users/Register.aspx\">免费注册</a></li>"); }
    });
}

