gpt4 book ai didi

javascript - 向数据表单元格添加点击事件

转载 作者:行者123 更新时间:2023-12-02 21:45:51 25 4
gpt4 key购买 nike

我正在尝试将单击事件添加到动态创建的数据表中。这是我的 js :

   $('#report-table').dataTable({
"proccessing": true,
"serverSide": true,
"ajax": {
url: '@Url.Action("Get","Controller")',
type: 'GET'

},
"columns": [
{ "data": "Name" },
{ "data": "Date" }, //lest say I want to add a click event here ???
{ "data": "sName", render: myRender }// I tried render but this is rendered without waiting on click function
]

});

这是我的表格:

<tr role="row" class="odd">
<td class="sorting_1">A Test</td>
<td class="aaaa">2/13/2020 3:34:40 PM</td> //lets say I want to fire a click event when I click the .aaaa class
<td>
<a asp-route-fileid="55555555" asp-action="Download5"><img src="img/download.svg" height="30" width="30"></a>
</td>

假设我想在单击 .aaaa 类时触发单击事件。

谁能给我一个主意吗?我可以这样做吗?我被困在这里了。任何想法都会非常非常感激:)

最佳答案

试试这个,更多信息请查看 forum :

$('#report-table').on('click', 'td.className', function (e) {
// your code to do something
});

关于javascript - 向数据表单元格添加点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60254869/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com