如何在salesforce闪电控制器中处理表td click事件

时间:2015-01-22 06:43:45

标签: salesforce

(文档)$。就绪(函数(){

$(“#myTable td”)。点击(function(){

var column_num = parseInt( $(this).index() ) + 1;
var row_num = parseInt( $(this).parent().index() )+1;    

$("#result").html( "Row_num =" + row_num + "  ,  Rolumn_num ="+ column_num );   

}); });

1 个答案:

答案 0 :(得分:0)

在组件文件中,您可以像这样定义点击事件功能

<td onclick="{!c.tdClickHandler}">Some text </td>

在控制器中编写处理程序

 ({
    tdClickHandler : function(component, event, helper) {
       console.log('I am td click handler');
    }
 })