当我克隆DIVS时,我无法使滚动导航工作 它应该开火。我希望在克隆div时启动滚动。
任何想法?
或
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;
}
});
答案 0 :(得分:0)
“你必须有一个可滚动的根元素,并且内部是项目的另一个包装元素。”