清空原来
if (data)
{
$.each(data,function(i,val){
output += '标签里的内容';
});
if(output!=""){
$("#it").empty().append(output);
}
}
else
{
return false;
}