各个div的jquery函数

时间:2010-11-23 01:06:12

标签: javascript jquery function vote

我认为这可以通过.prev()函数实现,但由于某种原因它无效。

我正在为博客上的帖子创建竖起/向下按钮。我正在尝试根据用户投票显示消息。无论是UP还是DOWN,但每当我投票1个特定帖子时,所有帖子都会显示该消息。

这是我的代码。我删除了prev()尝试以使其更具可读性。该脚本可以很好地实现ajax。

$(document).ready(function() {
    $(".vote_button").click(function(e) { //the UP or DOWN vote button
    var vote_status = $(this).attr('class').split(' ')[1]; //gets second class name following vote_button
    var vote_post_id = $(this).attr("id"); //the post ID
    var dataString = 'post_id=' + vote_post_id + '&vote_status=' + vote_status;

    $.ajax({
        type: "POST",
        url: "url/add_vote.php",
        data: dataString,
        cache: false,
        success: function(html) {
            if (vote_status == 1) 
         {
                $('.msg_box').fadeIn(200);
                $('.msg_box').text('You voted UP!');
            }
            if (vote_status == 2) 
         {
                $('.msg_box').fadeIn(200);
                $('.msg_box').text('You voted DOWN!');
            }
        }
    });
    return false;
});
});

示例HTML

<div class="vote_button 1" id="18">UP</div>
<div class="vote_button 2" id="77">DOWN</div>
<div class="msg_box"></div>

<div class="vote_button 1" id="43">UP</div>
<div class="vote_button 2" id="15">DOWN</div>
<div class="msg_box"></div>


<div class="vote_button 1" id="11">UP</div>
<div class="vote_button 2" id="78">DOWN</div>
<div class="msg_box"></div>

编辑:提供没有Ajax部分的jsfiddle http://jsfiddle.net/XJeXw/

1 个答案:

答案 0 :(得分:5)

您需要保存对click处理程序内部按钮的引用(例如var me = $(this);),然后在AJAX处理程序中使用me.nextAll('.msg_box:first')

编辑Example

var me = $(this);   //The this will be different inside the AJAX callback

$.ajax({
    type: "POST",
    url: "url/add_vote.php",
    data: dataString,
    cache: false,
    success: function(html) {
        me.nextAll('.msg_box:first')
            .text(vote_status == 1 ? 'You voted UP!' : 'You voted DOWN!')
            .fadeIn(200);
    }
});