0

我无法让可滚动导航工作,当我克隆 DIVS 时它应该触发。我希望在克隆 div 时开始滚动。

任何的想法?

http://jsfiddle.net/2mby5/13/

或者

var cloneCount = 0;
$("#add-address").click(function() {

     $("#to-add-address").clone()
        .attr("id", "to-add-address_Clone" + cloneCount)
        .insertAfter("#to-add-address").addClass('cloned');  //add a new class cloned to the cloned outerDivs
    $(".clone", "#to-add-address_Clone" + cloneCount)
        .attr("id", "clone_Clone" + cloneCount);
    cloneCount++;
     $('#scroll-addresses').scrollable();
});



$(document).on("click", '.options li a',function () {
            $(this).closest(".options").find('li a').removeClass('selected');
            $(this).addClass('selected');

        });
$(document).on("click", 'li.delete',function () {
            $(this).closest(".outerDiv").filter('.cloned').remove(); // and delete only the cloned ones
    if ($(this).is(".outerDiv:last")){
            return false;
    }   
});

 ​
4

1 回答 1

0

“您必须有一个可滚动的根元素,并且在该元素的另一个包装元素内。”

http://jquerytools.org/demos/scrollable/index.html

于 2012-04-16T14:54:13.887 回答