document.writeln(""); $('#hits').html('120'); $('#js-read-times-text').html('120'); $('#comments_top').html('0'); $('#js-comments-times-text').html('0'); $('#comments').html('0'); $('.comment-content>ul').html(''); function voteFor(id) { this.id = id; var url = "comment/?action=vote"; var data = '&id='+id + '&field=support'; $.ajax({ url: url, data: data, type: 'post', success :function (msg){ $('#count_'+ id+'_1').html(msg); $('#count_'+ id+'_0').html($('#count_'+ id+'_0>a').html()); } }); } /** * 反对 **/ function voteAgainst (id ) { this.id = id; var url = "comment/?action=vote"; var data = '&id='+id + '&field=against'; $.ajax({ url: url, data: data, type: 'post', success :function (msg){ $('#count_'+ id +'_0').html(msg); $('#count_'+ id+'_1').html($('#count_'+ id+'_1>a').html()); } }); }