$(function(){
  // Initial vote links
  $('.vote_link').click(function(){
    var $target_elm = $(this).parent();
    $.ajax({
      type: 'GET',
      url: this.href,
      datetype: 'html',
      error: function(){
        alert("对不起，暂时不能投票，请稍后再试。");
      },
      success: function(html){
        if(html) {
          $target_elm.replaceWith(html);
        } else {
          alert('投票错误，请刷新页面后重新尝试。');
        }
      }
    });
    return false;
  });
});
