1

$ .postセクション内から$(this)にアクセスできないようです。それ以外では問題なく動作します。これがjavascriptです:

    $('.idea').each(function(){
        var title = $(this).html();
        $.post("votes.php", { title: title }, function(data){
            $(this).nextAll('.voteTotal').html(data);
        }, "json");
    });

HTML:

<h3 class="idea">Idea #1</h3>
<h4 class="voteTotal"></h4>
<p>This is a really cool idea.</p>
<a href="#" class="vote">Click to vote</a>
4

2 に答える 2

4

thisコールバック関数の前にバックアップする必要があります。

$(".idea").each(function() {
    var $this = $(this),
        title = $this.html();

    $.post("votes.php", { title: title }, function(data) {
        $this.nextAll(".voteTotal").html(data);
    }, "json");
});
于 2012-11-16T12:01:31.863 に答える
0

設定を使用するcontextと、機能します。

$('.idea').each(function(){
    var title = $(this).html();
    $.post("votes.php", { title: title, context: this }, function(data){
        $(this).nextAll('.voteTotal').html(data);
    }, "json");
});
于 2012-11-16T12:11:23.407 に答える