0

我的反应项目中有一个引导表。我想获取我单击的行的索引。我想做这样的事情 onclick = {this.handleClick} 并且在 handleClick 函数中我想获取行的索引。有没有可能做到。大多数可用的解决方案都使用 jquery 显示所有内容,我不想使用 Jquery。我只想使用javascript来做到这一点。这是我的桌子

<Table className='flags-table' responsive hover>
                                    <thead>
                                        <tr>
                                            <th> </th>
                                            <th> Time In </th>
                                            <th> Time Out </th>
                                            <th> Type </th>
                                            <th> Category </th>
                                        </tr>
                                    </thead>
                                    <tbody>
                                        {
                                            FLAGS_LIST.map((x,i)=> (
                                                <tr key={i}>
                                                    <td> <div className='red-box'></div> </td>
                                                    <td> {x.time_in} </td>
                                                    <td> {x.time_out} </td>
                                                    <td> {x.type} </td>
                                                    <td> {x.category} </td>
                                                </tr>
                                            ))  
                                        }
                                    </tbody>
                                </Table>
4

1 回答 1

1

你可以使用这样的代码:

onclick = {this.handleClick.bind(this, i)}; 

并且handleClick应该这样声明:

var handleClick = function(i) {
console.log("key of row", i)
...
};
于 2017-01-27T09:16:13.017 回答