在 jhoom.xyz 從事一個項目,並且一直停留在我想限制每個 IP 投票的地方。
` function voteReview(reviewId, voteType) {
常量資料 = {
行動:'ipf_vote_review',
評論 ID:評論 ID,
投票類型:投票類型,
postId: ID; ? >
};
jQuery.post('<?php echo admin_url('admin-ajax.php'); ?>', data, function(response) { if (response.success) { const reviewElement = jQuery('.single-review').eq(reviewId); if (voteType === 'up') { let upCount = parseInt(reviewElement.find('.thumb:first').text().match(/\d+/)[0]) + 1; reviewElement.find('.thumb:first').html('👍 (' + upCount + ')'); } else { let downCount = parseInt(reviewElement.find('.thumb:last').text().match(/\d+/)[0]) + 1; reviewElement.find('.thumb:last').html('👎 (' + downCount + ')'); } } else { alert(response.data); } }); }
`
以上是投票系統Javascript的詳細內容。更多資訊請關注PHP中文網其他相關文章!