我正在编写一个canJS应用程序,到目前为止成功处理了html表的click事件。使用以下代码。

 'table td click':function(el,event){
        console.log('clicked ',el.text());
     }



如何只听第一列单击表而不是整个td?
如何从td(el)检索特定列的数据?

最佳答案

尝试这个:

'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
 }

关于javascript - CanJS表格点击事件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15739061/

10-13 23:36