1
請原諒我的英語。 我一直在試圖創建一個動態表格,它可以在編輯按鈕後編輯其中的數據。 問題是我在最後一列創建複選框的列後,我只是不能在jQuery上執行它的點擊功能,因爲我想。如果按下一個特定的複選框,則取消所有複選框
創建函數如下:
$("#meetingspanel td:last").each(function(event){ // Adding the checking column and showing the editing buttons
$("#btnDelete").fadeIn("slow");
$("#btnRename").fadeIn("slow");
$("<td style=border:0px><input type='checkbox' id='btncb'></td>").insertAfter($("td:nth-child(6)"));
});
,並想,如果我是我用這裏面的功能:
$(":checkbox").click(function(event){
alert("im here !");
});
,它只是沒有發現,當我點擊複選框。 幫助?
太棒了!它現在的作品,現在感謝你, – 2012-02-05 11:42:47
沒問題,很高興我可以幫助:) – 2012-02-05 11:46:28