﻿/*---------广告调用js---------------*/
function Advertising(id) {
    $('#' + id).html('正在加载中...');
    if (id != "" & id != null) {
        id = id.replace(' ', '');
        $.ajax({
            type: "POST",
            url: "Ajax/AdvertisingInfo.ashx?str={$" + id + "|}&Cache=" + Math.random(),
            success: function (msg) {
                $('#' + id).html(msg);
            }
        });
    }
}
