﻿$.ajax({
    type: "POST",
    url: "http://am.shinycg.com/Controller.asmx/ActivityController",
    dataType: "jsonp",
    success: function (data) {
        if (data.ActivityUrl != "" & ModulePlugin.GetQueryString("Am") == null) {
            location.href = data.ActivityUrl + '?RepUrl=' + location.href;
        }
    },
    error: function () { alert("服务器忙,没有返回数据!"); }
});

