﻿
function getIsInBackList(idshow){
	$("document").ready(function(){
		 $.ajax({
		   type: "post",
		   url: "/IsInBackList.aspx",
		   beforeSend: function(XMLHttpRequest){
		        $("#"+idshow).html("正在处理中，请稍后...");
		   },
		   success: function(data, textStatus){
				$("#"+idshow).html(data);
		   },
		   error: function(){
		         $("#"+idshow).html("数据加载失败!");
		   }
		 });
	 });
}

function getIsSpreader(idshow){
	$("document").ready(function(){
		 $.ajax({
		   type: "post",
		   url: "/IsInBackList.aspx?type=1",
		   beforeSend: function(XMLHttpRequest){
		        $("#"+idshow).html("正在处理中，请稍后...");
		   },
		   success: function(data, textStatus){
				$("#"+idshow).html(data);
		   },
		   error: function(){
		         $("#"+idshow).html("数据加载失败!");
		   }
		 });
	 });
}