﻿// JScript 文件
$(function(){
    //产品资讯
    //WirteDiv();
    SetCustomerMsg_Div();
    getProductInfoTop3();
    getNewsInfoTop3();
    
});

//

function getProductInfoTop3(){
    /*
    $("#newInfo").ajaxStart(function(){
        $(this).html(LoadingMSG("images/loading.gif","载入中,请稍候......."));
    });
    */
    $.get("AjaxService.ashx?Action=getProductTop3&t="+GetDateTime(),function(r){
        $("#newInfo").html(r);
    });
}

function getNewsInfoTop3(){
    /*
    $("#newsCenter").ajaxStart(function(){
        $(this).html(LoadingMSG("images/loading.gif","载入中,请稍候......."));
    });
    */
    $.get("AjaxService.ashx?Action=getNewsInfoTop3&t="+GetDateTime(), function(r){
        $("#newsCenter").html(r);
    });
}

function detailProduct(id,typeid){
    window.location.href = "Product.aspx?newid="+id+"&typeid="+typeid;
}

function detailNews(id){
    window.location.href = 'Article.aspx?newid='+id;
}

function GetProductContent(typeid){
    window.location.href = 'ProductList.aspx?typeid='+typeid;
}





