首頁  >  文章  >  web前端  >  投票系統Javascript

投票系統Javascript

Barbara Streisand
Barbara Streisand原創
2024-09-22 16:30:39349瀏覽

Voting System Javascript

在 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('&#128077; (' + upCount + ')');
                } else {
                    let downCount = parseInt(reviewElement.find('.thumb:last').text().match(/\d+/)[0]) + 1;
                    reviewElement.find('.thumb:last').html('&#128078; (' + downCount + ')');
                }
            } else {
                alert(response.data);
            }
        });
    }

`

以上是投票系統Javascript的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn