QAZ123456258-摸鱼茶话会
QAZ123456258的头像-摸鱼茶话会
UID:7985 已加入MOYU网3天 总消费:0
这家伙很懒,什么都没有写...
jQuery(document).ready(function($){ $('.post-rating .star').hover(function(){ var index = $(this).index(); $(this).parent().children('.star').each(function(i){ $(this).css('color', i <= index ? '#ffb400' : '#ccc'); }); }, function(){ $(this).parent().children('.star').css('color', '#ccc'); }); $('.post-rating .star').on('click', function(){ var rating = $(this).data('value'); var post_id = $(this).closest('.post-rating').data('post'); $.post('https://luol.top/wp-admin/admin-ajax.php', { action: 'submit_rating', post_id: post_id, rating: rating }, function(response){ if(response.success){ $('.rating-result').html('当前评分:' + response.data.average + ' 分(' + response.data.count + ' 次)'); $('.post-rating .star').off('click').css('color', '#ffb400'); } else { alert(response.data.msg); } }); }); });