gpt4 book ai didi

php - Jquery (Datatables) 功能没有完全初始化? PHP/MySQL

转载 作者:行者123 更新时间:2023-11-28 01:35:55 24 4
gpt4 key购买 nike

我正在尝试应用 Jquery 的数据表来显示我的数据库。在此链接中的示例中,该表是可搜索的,可以订购的,并且具有很好的分色。

http://www.datatables.net/examples/basic_init/zero_configuration.html

我当前的代码显示数据,但没有排序功能,没有搜索选项,只有原始数据、粗体标题和分隔行的条(没有示例中的交替颜色)。带有垃圾数据的图片:css fail

它似乎应用了一些 css 但不是全部?我不明白为什么缺少功能和剩余样式。我返回并从我的最后一个代码中放入 html 结构,结果相同并且没有抛出任何错误。

代码:

<?php
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "dbname";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}

$sql = "SELECT Sid, Fname, Lname, Email, Dtype, Mac, Date FROM StudentDeviceReg";
$result = $conn->query($sql);
?>
<!Doctype html>
<html>
<head>
<title>DataTables</title>
<Meta http-equiv="Content-Type" content="text/html; charset=UTF-8">


<script src="media/js/jquery-1.11.1.min.js" type="text/javascript"></script>
<script src="media/js/jquery.dataTables.min.js" type="text/javascript"></script>

<style type="text/css">
@import "media/css/jquery.dataTables.css";
</style>

<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#datatables').dataTable();
})
</script>
</head>
<body>
<div>
<thead>

<?php

if ($result->num_rows > 0) {
echo "<table id='datatables' class='display'>
<tr>
<th>ID</th>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Device</th>
<th>Mac Address</th>
<th>Date</th>
</tr>";
?>

</thead>
<tbody>

<?php


// output data of each row
while($row = $result->fetch_assoc()) {
echo "<tr>
<td>".$row["Sid"]."</td>
<td>".$row["Fname"]."</td>
<td>".$row["Lname"]."</td>
<td>".$row["Email"]."</td>
<td>".$row["Dtype"]."</td>
<td>".$row["Mac"]."</td>
<td>".$row["Date"]."</td>
</tr>";
}
echo "</table>";


} else {
echo "0 results";
}
$conn->close();
?>
</tbody>
</div>
</body>
</html>

最佳答案

您的表格树结构不正确。

<body>
<div>

<?php

if ($result->num_rows > 0) {
echo "
<table id='datatables' class='display'>
<thead>
<tr>
<th>ID</th>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Device</th>
<th>Mac Address</th>
<th>Date</th>
</tr>
</thead>
<tbody>";

while($row = $result->fetch_assoc()) {
echo "
<tr>
<td>".$row["Sid"]."</td>
<td>".$row["Fname"]."</td>
<td>".$row["Lname"]."</td>
<td>".$row["Email"]."</td>
<td>".$row["Dtype"]."</td>
<td>".$row["Mac"]."</td>
<td>".$row["Date"]."</td>
</tr>";
}
echo "
<tbody>
</table>";
}

?>

</div>
</body>

关于php - Jquery (Datatables) 功能没有完全初始化? PHP/MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28200129/

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