1

我正在使用 jQuery 插件 Gridster。

我制作了一个 add_widget 按钮,它添加了一个新的小部件。这个小部件也可以再次删除。

所有这些都正常工作。但是,当您单击标题时,它应该会触发一个滑动框。但是这个滑动框不适用于新添加的小部件,仅适用于从一开始就存在的小部件。

帮助!!!!

看到这个小提琴:http: //jsfiddle.net/ygAV2/

我怀疑:

添加框部分

//add box
$('.addbox').on("click", function() { 
gridster.add_widget('<li data-row="1" data-col="1" data-sizex="2" data-sizey="1"><div class="box"><div class="menu"><header class="box_header"><h1>HEADER 5</h1></header><div class="deleteme"><a  href="JavaScript:void(0);">delete me ;(</a></div></div></li>', 2, 1)

});

和滑动盒部分:

// widget sliding box

 $("h1").on("click", function(){
   if(!$(this).parent().hasClass('header-down')){
      $(this).parent().stop().animate({height:'100px'},{queue:false, duration:600, easing: 'linear'}).addClass('header-down');
   } else{
      $(this).parent().stop().animate({height:'30px'},{queue:false, duration:600, easing: 'linear'}).removeClass('header-down');
   }
});



$(document).click(function() {
    if($(".box_header").hasClass('header-down')){
        $(".box_header").stop().animate({height:'30px'},{queue:false, duration:600, easing: 'linear'}).removeClass('header-down');
}
});

$(".box_header").click(function(e) {
    e.stopPropagation(); // This is the preferred method.
           // This should not be used unless you do not want
                         // any click events registering inside the div
});
4

1 回答 1

0

The use of .live() is deprecated. http://api.jquery.com/live/

So using the correct way, .on(event, selector, handler) on all your click events.

You will achieve your desired result.

Here is a code snippet

$(document).on("click", 'h1', function() {
    if (!$(this).parent().hasClass('header-down')) {
        $(this).parent().stop().animate({
            height: '100px'
        }, {
            queue: false,
            duration: 600,
            easing: 'linear'
        }).addClass('header-down');
    } else {
        $(this).parent().stop().animate({
            height: '30px'
        }, {
            queue: false,
            duration: 600,
            easing: 'linear'
        }).removeClass('header-down');
    }
});

and here

//remove box
$(document).on('click', ".deleteme", function () {
    $(this).parents().eq(2).addClass("activ");
    gridster.remove_widget($('.activ'));
    $(this).parents().eq(2).removeClass("activ");
});

and also here

$(document).on("click", ".box_header", function (e) {
    e.stopPropagation(); // This is the preferred method.
    // This should not be used unless you do not want
    // any click events registering inside the div
});

I have updated your jsfiddle: http://jsfiddle.net/ygAV2/2/

于 2013-03-04T13:57:16.673 回答