$.getJSON('http://www.xxxx.com/vote.php?callback=?',{id:id,code:_inputCheckCode},function(obj){
if(obj){

if(obj.status == 1)
{
   $("#vote_" + id).html(obj.votes);
}
}
   });
这里面的 $("#vote_" + id).html(obj.votes); 是什么意思呀?