0

我正在尝试获取每个列表的大小,因为有多个列表并且每个列表都被动态添加。它似乎没有返回正确的数字,不知道为什么。

计数应返回每个部分的列表项数

这里也有一个小提琴:http: //jsfiddle.net/Dqf8B/

  <section id="questionOne">
                <span class="surveyQuestion"></span>
                <form>
                    <input>
                    <a class="button">Add</a>
                </form>
                <p class="helperText">drag to prioritize</p>
                <ol class="draggable answers">
                </ol>
            </section>

            <section id="questionTwo">
                <span class="surveyQuestion"></span>
                <form>
                    <input>
                    <a class="button">Add</a>
                </form>
                <p class="helperText">drag to prioritize</p>
                <ol class="draggable answers">
                </ol>
            </section>

function checkIfHelperIsNeeded(counter) {
    if(counter == 2){
        helperText.slideToggle(function(){
            $(this).fadeIn();
        })
    if (counter < 2) { helperText.hide(); };
    }
}

$('.button').each(function(){
    var counter = $(this).parent("form").parent("section").find("ol").size();
    console.log(counter);
    $(this).click( function(){
        if(counter <= 5) {
            checkIfHelperIsNeeded(counter);
            var myCurrentInputTags = $(this).parent('form').children('input').val();
            var li = $('<li class="tag">'+myCurrentInputTags+'</li>');
            $('<span class="close"></span>').on('click', removeParent).prependTo(li);
            $(this).parent('form').parent('section').children('.draggable').prepend(li);
        } else { alert("only 5 answers per question allowed")}
    });
})

function removeParent() { 
    $(this).parent().fadeOut( function() {
        $(this).remove();
    }); 
}

var helperText = $(".helperText");
helperText.hide();
4

1 回答 1

0

each()目前,当此脚本首次加载时,您似乎只运行了一次该函数。因此,您不应该期望它获取对 DOM 动态进行的任何更改。

然后,您设置了一个 onclick 函数来比较该counter值(它始终是最后一个按钮的最后计算值)与可能是不同的按钮。所以本质上,在each()运行之后counter有一个静态值,所有按钮都将在click(). 我猜这不是你想要的。

您可能应该只计算函数中ol选择的大小,click()因为您实际上没有从使用此counter变量中获得任何收益。

于 2013-05-31T21:10:59.943 回答