2013-08-31 180 views
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(); 
    }); 
}); 
+0

我編輯你的問題,我希望你沒有忘記關閉的聲明。我認爲這是意外。 –

+0

是啊這是一個粘貼錯誤,但在小提琴工作只是不是我的實際代碼 – user2430661

+0

你是否在dom準備處理程序 –

回答

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(); 
}); 

演示:Fiddle

+0

尷尬的事情是我在我的代碼中是否正確我沒有粘貼到小提琴任何理由爲什麼它在fillde工作,而不是在我的代碼 – user2430661

+0

你可以請你在這裏發佈你的整個代碼? – Dhaval

+0

@ user2430661是否在dom準備好處理程序 –