我在这样的表上使用可选择的 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");
});
我希望第一列具有不同的回调函数,但是永远不会调用第一列的单击。是否有可能做到这一点?我究竟做错了什么?
感谢您的任何帮助