0
我使用像這樣的表jQuery的選擇...jQuery的選擇與另一個事件
var body=$("<tbody class='selectable'></tbody>")
body.selectable({
filter: 'td:not(:first-child)'
});
// this is the first column which is filteres out of the selectable
$(".first-col").on('click',function(e){
console.log("click for first column is here");
});
我想的第一列具有不同的回調函數,但點擊第一列上從來沒有被調用。是否有可能做到這一點?我究竟做錯了什麼?
感謝所有幫助 V
爲什麼你不能附加一個click事件 '.selectable'? –