我已经查看了十多个有关使用onclickclickbind("click", ...)on("click", ...)等的问题,但尚未发现我遇到的问题。

基本上,这是一个可扩展的div,它在未扩展时会隐藏一些内容。我正在使用带有数据切换按钮的Twitter Bootstrap collapse类来扩展/折叠内容本身,但是我还需要修改容器div的CSS以增加高度,以便在视觉上将内容框显示为将延伸以包含它。

这是我的脚本代码:

$(document).ready(function() {
    $("#expand-button").bind('click', expandClick($));
    document.getElementById("#expand-button").bind("click", expandClick($));
});

function expandClick($) {
    $("#outer-container").animate({ "height": "350" }, 500);
    $("#expand-button").html("^");
    $("#expand-button").bind("click", collapseClick($));
};

function collapseClick($) {
    $("#outer-container").animate({ "height": "50" }, 500);
    $("#expand-button").html("V");
    $("#expand-button").bind("click", expandClick($));
}


想法很简单,即处理程序根据按钮的状态旋转进出。实际上,发生的事情是,一旦我加载页面,就会立即执行expandClick函数,这将引发一个无限循环的容器上下反弹,尽管没有单击任何内容。

有任何想法吗?

另外,我认为它不应该相关,但是HTML看起来像:

    <div id="outer-container" class="container-fluid subsession-collapsed">
        <div class="row-fluid" style="height: 50px">
            <!-- OTHER STUFF... -->
            <div class="span1" id="4">
                <button id="expand-button" class="btn-success" data-toggle="collapse" data-target="#expandable">V</button>
            </div>
        </div>
        <br /><br />
        <div id="expandable" class="row-fluid collapse">
            <div class="span12" style="padding: 0 20px">
                <!-- CONTENT -->
            </div>
        </div>
    </div>




编辑:

我曾经尝试找到解决方案的一个SO主题是this one,但是所有响应都给出了相同的结果。

最佳答案

该语句将expandClick的结果分配为处理程序,即

$("#expand-button").bind('click', expandClick($));


应该

$("#expand-button").bind('click', function() { expandClick($) });


另一个问题是您要从expandClickcollapseClick添加更多点击处理程序,但从不删除它们

这就是我要重写的代码,我不知道为什么要传递$

$(document).ready(function() {
    // Cache your variables instead of looking them up every time
    var expandButton =  $("#expand-button"),
        outerContainer =  $("#outer-container");

    function expandClick() {
        outerContainer.animate({ "height": "350" }, 500);
        expandButton.html("^");
        // Remove the previous handler
        expandButton.off('click', expandClick );
        // Bind the new handler
        expandButton.bind("click", collapseClick);
    };

    function collapseClick() {
       outerContainer.animate({ "height": "50" }, 500);
       expandButton.html("V");
        // Remove the previous handler
       expandButton.off('click', collapseClick);
        // Bind the new handler
       expandButton.bind("click", expandClick);
    }

    expandButton.bind('click', expandClick);
    // What is this????
    //document.getElementById("#expand-button").bind("click", expandClick($));
});

关于jquery - jQuery onclick在元素被单击之前不断触发,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13145725/

10-12 06:41