﻿function AddFavorite(FavoriteType,id,url)
{            
  $.ajax({
   type: 'get',
   url: '../ReqHandler.ashx',
   data:   'Category=AddFavorite&FavoriteType='+FavoriteType+'&id='+id+'&url='+url+'&rnd='+Math.random() ,
   dataType:'text',  //接受数据格式
   success: function(data)
   { 
         var vArray=data.split(';');
        if(vArray[0]=="1")
        {
            alert("加入收藏成功！");
        }
        else if(vArray[0]=="0")
        {
            alert('您还没有登录，请先登录！');
            location.href='http://' +vArray[1]+ '/logon.aspx?SourceURL='+escape(window.location);
        }
        else if(vArray[0]=="2")
        {
            alert('您已经收藏过！');
        }
        else if(vArray[0]=="3")
        {
            alert("收藏失败");
        }
   } 
  });
} 