我正在编写一个canJS应用程序,并且迄今为止成功处理了html表的click事件。使用以下代码。
'table td click':function(el,event){
console.log('clicked ',el.text());
}
答案 0 :(得分:2)
试试这个:
'table td:nth-child(1) click'
第二个问题的可能答案,首先处理整个tr:
'table tr:nth-child(1) click':function(el,event){
console.log(el.find('td').eq(0).html()); // gets first column
}