// 邮件订阅
$(document).ready(function(){
	$("#sendmail").click(function(){
			$.ajax({url: '/treasury/sendmail', 
			type: 'POST',
			data:{searchKey:$("#search").val()}, 
			dataType: 'html',
			timeout: 3000, 
			error: function(){$("#xian").empty();$("#xian").append("订阅成功,请查收");
			$("#xian").css({"background":"#ecffec","border":"1px solid #00ae00"});
			$("#xian").slideDown(400).delay(800).slideUp(400);},
			success: function(result){
				if(result==1)
				{
					$("#xian").empty();
					$("#xian").append("订阅成功");
					$("#xian").css({"background":"#ecffec","border":"1px solid #00ae00"});
					$("#xian").slideDown(400).delay(800).slideUp(400);
				}
				else if(result==-1)
				{
					$("#xian").empty();
					$("#xian").append("邮箱格式不正确");
					$("#xian").css({"background":"#ffebeb","border":"1px solid #ff5353"});
					$("#xian").slideDown(400).delay(800).slideUp(400);
					$("#search").focus();
				}
				else if(result==0)
				{
					$("#xian").empty();
					$("#xian").append("您已经订阅,请注意查收");
					$("#xian").css({"background":"#ffebeb","border":"1px solid #ff5353"});
					$("#xian").slideDown(400).delay(800).slideUp(400);
				}
				else if(result==-2)
				{
					$("#xian").empty();
					$("#xian").append("邮箱不能为空");
					$("#xian").css({"background":"#ffebeb","border":"1px solid #ff5353"});
					$("#xian").slideDown(400).delay(800).slideUp(400);
					$("#search").focus();
				}
			}
		});
	});
});
