﻿    $(document).ready(function(){
    $.ajax({
        type:"post",
        contentType:"application/json",
        url:"sale.aspx/getAdvertisment",
        data:"{'condition':'首页'}",
        dataType: 'json',
        success:function(result)
        {
            if(result.d!=null)
            {
                  $("#advertisement").html("");
                $(result.d).each(function(i,e){
                    var src=e.Adv_url;
                    var link=e.adv_title;
                    var width=e.adv_wide;
                    var height=e.adv_height;
                    if(e.adv_class.toString().indexOf("首页中部")>-1)
                    {
                         $("#indexMiddle").html("<a href='"+link+"' target='_blank'><img width='"+width+"px' height='"+height+"px' src='FileUpload/AdvImg/"+src+"' /></a>");
                    }else
                    {
                        $("#advertisement").append("<li><a href='"+link+"' target='_blank'><img width='"+width+"px' height='"+height+"px' src='FileUpload/AdvImg/"+src+"' /></a></li>");
                    }   
                });
            }
        },
        error:function(msg){alert(msg);}
    });
}); 
