0

http://jsfiddle.net/CCKUz/

所以我有一个盒子,<span class="open">它会增加可折叠 div 的高度以查看内容。它可以简单地通过 CSS 高度折叠,并且打开的点击功能将高度设置为自动。很容易,这很有效。

当我去追加打开和关闭跨度时,就会出现问题。当我将它们包含在实际的 html 中时,它们可以正常工作。当我附加它们时,它们不再起作用。我想这可能是由于 js 无法将 .click 函数应用于它们,因为它们是在加载后创建的,但即使创建它们并在同一函数中应用 .click 也无济于事。

你在那里看到什么可能会影响到这一点吗?谢谢。

HTML:

<div class="box collapsible">
    <h3>Title</h3>
    <p>This is a sample paragraph that is here for placer purposes.</p>
</div>

CSS:

.box { height: 20px; border: 1px solid #000000; padding: 10px; margin: 20px; position:   relative; overflow: hidden; }
h3 { margin: 0 0 20px 0; line-height: 20px; }
.open, .close { text-indent: -9999px; width: 20px; height: 20px; position: absolute; top:  10px; right: 10px; }
.open { background: #00ff00; }
.close { background: #0000ff; }

JS:

$(function(){
        var box = $(".collapsible");
        var close = $(".collapsible span.close");
        var open = $(".collapsible span.open");
        box.each(function(){
            box.append('<span class="open">Open</span>');
            open.each(function(i){
                open.click(function(){
                    alert("You clicked open");
                    $(this).parent(box).css("height","auto").append('<span class="close">Close</span>');
                    $(this).hide();
                    $(this).parent().find(close).show();
                });
            });
            close.each(function(i){
                close.click(function(){
                    $(this).parent(box).css("height","15px");
                    $(this).hide();
                    $(this).parent().find(open).show();
                });
            });
        });
    });
4

4 回答 4

2

不需要循环,jQuery 会在内部完成,并且您需要具有动态元素的委托事件处理程序,如下所示:

$(function () {
    var box = $(".collapsible");
    box.append( $('<span />', {'class':'open'}) )
       .on('click', '.close', function () {
         $(this).hide()
                .closest('.collapsible')
                .css("height", "auto")
                .append( $('<span />', {'class':'close'}).show() );
    })
      .on('click', '.close', function () {
          $(this).hide()
                 .closest('.collapsible')
                 .css("height", "15px")
                 .find('.open').show();
    });
});
于 2013-02-18T15:29:43.250 回答
1

在添加它们之前选择开放元素:

var open = $(".collapsible span.open");

试试这个:

$(function(){
        var box = $(".collapsible");
        var close = $(".collapsible span.close");

        box.each(function(){
            box.append('<span class="open">Open</span>');
            var open = $(".collapsible span.open"); //do it here!!
            open.each(function(i){
                open.click(function(){
                    alert("You clicked open");
                    $(this).parent(box).css("height","auto").append('<span class="close">Close</span>');
                    $(this).hide();
                    $(this).parent().find(close).show();
                });
            });
            close.each(function(i){
                close.click(function(){
                    $(this).parent(box).css("height","15px");
                    $(this).hide();
                    $(this).parent().find(open).show();
                });
            });
        });
    });
于 2013-02-18T15:29:32.623 回答
0

无需.each委托功能

$(document).on('click','.collapsible span.open',function(){

在这里演示http://jsfiddle.net/CCKUz/2/

于 2013-02-18T15:27:18.237 回答
0

问题是您正在.close动态添加跨度,因此您的初始搜索将找不到任何内容,因此它不会向它们添加任何点击处理程序。您可以使用事件委托轻松解决此问题。

.on('click', 'span.close', function(evt){

您还可以大大简化您的代码:

$(".collapsible")
  .append('<span class="open">Open</span>')
  .on('click', 'span.open', function(evt){
    // Search within the parent '.collapsible'.
    $(evt.delegateTarget)
      .css("height", "auto")
      .append('<span class="close">Close</span>');

    // Hide the '.open' span.
    $(this).hide();
  })
  .on('click', 'span.close', function(evt){
    // Search within the parent '.collapsible'.
    $(evt.delegateTarget)
      .css("height","15px");
      .find('.open').show();

    // Remove the old '.close' button since the
    // open handler will make a new one.
    $(this).remove();    
  })
于 2013-02-18T15:34:40.027 回答