我正在使用datatable插件创建一个表。已添加按钮到表的最后一列。问题:未触发点击按钮。
<script>
$(document).ready(function() {
$('#tagtbl').DataTable( {
"paging": false,
"info": false,
"searching": false,
"ajax": "../api/clienttagtbl.php?off=OFF002",
"rowId": "id",
"columns": [
{ "data": "tagname" },
{ "data": null, "defaultContent": '<button id="tagdelete" type="button" class="btn btn-danger btn-sm" >X</button>' }
]
} );
} );
</script>
<script>
$(document).ready(function() {
$('#tagdelete').click( function(){
console.log("hi"); // <<---This is not working
});
$('#tagtbl').click( function(){
console.log("hi2"); //<<---This is working
});
});
</script>
<table id="tagtbl" class="table table-sm" >
<thead>
<tr>
<th>Tag Name</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th>Tag Name</th>
<th></th>
</tr>
</tbody>
</table>
答案 0 :(得分:2)
试试这个
$('#tagtbl').on('click','.tagdelete' function(){
console.log("hi");
});
我建议你为所有按钮使用一个类,而不是使用id。
答案 1 :(得分:1)
您需要在datatable drawCallback函数中添加按钮单击
$('#example').dataTable( {
"drawCallback": function( settings ) {
$('#tagdelete').click( function(){
console.log("hi");
});
$('#tagtbl').click( function(){
console.log("hi2");
});
}
} );