﻿

//首页的道具随机显示
this.GetRazerProps = function() {
$("#rzRanProps").removeAttr("innerHTML");  
    $.ajax({
        url: "../../Ashx/RazerAds.ashx",
        type: "post",
        data: "action=razerprops&top=2",  //参数需要修改 lisl   
        success: this._GetRazerPropsCompleted
           });
}

this._GetRazerPropsCompleted = function(retMsg) {
if (!retMsg) {
    retMsg = "暂无推荐信息";
    $("<div/>").attr("innerHTML", retMsg).appendTo("#rzRanProps");
    }
    else { 
        var objs = eval("(" + retMsg + ")");        
        var temp = "<table width='527' border='0' cellspacing='7' cellpadding='0' style='background: #333333;'><tr><td colspan='4' bgcolor='#000000'>";
        temp += "<img src='http://info.16288.com/ScoreCenter/jfsdocom/RazerImages/title2.jpg' width='158' height='30' /></td></tr><tr class='font_2'>";

        //固定 热血传奇
          temp += "<td width='25%' height='84' align='center' bgcolor='#000000'>";
          temp += "<p><a href='RazerExchProps.aspx?RazerGameID=4'><img src='http://info.16288.com/ScoreCenter/jfsdocom/RazerImages/热血传奇-烈焰魔靴.jpg' width='71' height='52' /></a></p>";
          temp += "<p>热血传奇-烈焰魔靴</p></td>";
            
          temp += "<td width='25%' height='84' align='center' bgcolor='#000000'>";
          temp += "<p><a href='RazerExchProps.aspx?RazerGameID=4'><img src='http://info.16288.com/ScoreCenter/jfsdocom/RazerImages/热血传奇-光芒要带.jpg' width='71' height='52' /></a></p>";
          temp += "<p>热血传奇-光芒腰带</p></td>";

          //固定 传奇世界
          temp += "<td width='25%' height='84' align='center' bgcolor='#000000'>";
          temp += "<p><a href='RazerExchProps.aspx?RazerGameID=1'><img src='http://info.16288.com/ScoreCenter/jfsdocom/RazerImages/传奇世界-魔神戒指.jpg' width='71' height='52' /></a></p>";
          temp += "<p>传奇世界-魔神戒指</p></td>";

          temp += "<td width='25%' height='84' align='center' bgcolor='#000000'>";
          temp += "<p><a href='RazerExchProps.aspx?RazerGameID=1'><img src='http://info.16288.com/ScoreCenter/jfsdocom/RazerImages/传奇世界-道神手镯.jpg' width='71' height='52' /></a></p>";
          temp += "<p>传奇世界-道神手镯</p></td>";
          
          /*  
        for (var i = 0; i < objs.length; i++) {
            temp += "<td width='25%' height='84' align='center' bgcolor='#000000'>";
            temp += "<p><a href='" + objs[i].MerchantID + "'><img src='" + objs[i].MerLogo + "' width='71' height='52' /></a></p>";
            temp += "<p>" + objs[i].ADTypeName + "</p></td>";
        }
        */
        
        temp += "</tr></table>";

        $("<div/>").attr("innerHTML", temp).appendTo("#rzRanProps");
    }
}
        

this.GetRazerProps();