我在使用DataTables插件时遇到了问题,我已经设法使其在另一个项目中起作用,但是在这个项目中它不起作用,我也不知道为什么。
似乎只有jQuery部分不起作用,因为我已经有CSS元素,并且具有DataTable函数的功能可以正常工作,但是当我尝试使用搜索输入或按列顺序排序时,什么也没发生我的桌子
这是我的HTML / PHP:
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Formulaire de recherche bitrix24</title>
<link rel="stylesheet" href="//cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
.......
.......
<div class="container-fluid">
<div class="row">
<div class="offset-3"></div>
<div class="col-lg-8">
<table class="table table-hover table-responsive display" id="table_1">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Titre</th>
<th scope="col">Prénom</th>
<th scope="col">Prospect créé le </th>
</tr>
</thead>
<?php
foreach($result as $key1){
?>
<tbody>
<tr>
<th scope="row"><?php echo $key1['ID']; ?></th>
<td><?php echo $key1['TITLE']; ?></td>
<td><?php echo $key1['NAME']; ?></td>
<td><?php $date_create=$key1['DATE_CREATE']; echo strftime("%A %e %B %Y à %H h %M ", strtotime($date_create)); ?>
</td>
</tr>
</tbody>
<?php
}
?>
</table>
</div>
</div>
</div>
......
......
<script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
</body>
</html>
这是我在另一个文件(js / scripts.js)中的js部分
$(document).ready(function(){
$('#table_1').DataTable({
"bDestroy": true,
language: {
processing: "Traitement en cours...",
search: "Rechercher :",
lengthMenu: "Afficher _MENU_ éléments",
info: "Affichage de l'élement _START_ à _END_ sur _TOTAL_ éléments",
infoEmpty: "Affichage de l'élement 0 à 0 sur 0 éléments",
infoFiltered: "(filtré de _MAX_ éléments au total)",
infoPostFix: "",
loadingRecords: "Chargement en cours...",
zeroRecords: "Aucun élément à afficher",
emptyTable: "Aucune donnée disponible dans le tableau",
paginate: {
first: "Premier",
previous: "Précédent",
next: "Suivant",
last: "Dernier"
},
aria: {
sortAscending: ": activer pour trier la colonne par ordre croissant",
sortDescending: ": activer pour trier la colonne par ordre décroissant"
}
}
});
});
这是我所拥有的: https://i.ibb.co/fkBdx51/Capture.png
所以,我拥有所有CSS元素,我的jQuery函数功能可以很好地识别我的表,但是没有JS元素能像上面所说的那样工作。
有人可以帮助我解决这个问题吗?
答案 0 :(得分:1)
好,我已经解决了这个问题,我的foreach循环不在正确的位置,它正在创建多个tbody标签。
我已经更改了循环的位置,现在可以使用了。