0

谁能告诉我为什么这两个添加和删除克隆 btton 不能一起工作? http://jsfiddle.net/NXcxg/4

$("#addArrival\\/Departure").click(function () {
    $(".question21:last").after($(".question21:first").clone(true));
});

$("#deleteArrival\\/Departure").click(function () {
    if ($(".question21").length != 1) $(".question21:last").remove();
});

$("#addChild").click(function(){
        $(".question20:last").after($(".question20:first").clone(true));
    });

    $("#deleteChild").click(function() {
        if($(".question20").length!=1)
        $(".question20:last").remove();
     });
});
4

1 回答 1

0

您的#deleteChild点击处理程序未正确关闭

$("#addArrival\\/Departure").click(function () {
    $(".question21:last").after($(".question21:first").clone(true));
});

$("#deleteArrival\\/Departure").click(function () {
    if ($(".question21").length != 1) $(".question21:last").remove();
});

$("#addChild").click(function(){
    $(".question20:last").after($(".question20:first").clone(true));
});

$("#deleteChild").click(function() {
    if($(".question20").length!=1)
        $(".question20:last").remove();
});

演示:小提琴

于 2013-08-31T03:18:35.310 回答