作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用此方法将数据提取到 mysql 表
$query=$conn->query("SELECT * FROM users ORDER BY id_user ASC");
这是我的表结构
用户
id_user | INT auto-increment
username | varchar
password | varchar
nama | varchar
role | varchar
status | SET
但是显示的数据顺序是这样的 1,10,11,12,13,2,3,4,5,6,7,8,9(数据库中有13条数据)
编辑:要显示的完整代码
<table cellpadding="0" cellspacing="0" border="0" class="table table-striped table-bordered" id="example">
<thead>
<tr>
<th align="center">ID</th>
<th align="center">Username</th>
<th align="center">Nama</th>
<th align="center">Role</th>
<th width="13%" align="center">Status</th>
<th width="7%" align="center">Edit</th>
<th width="8%" align="center">Hapus</th>
</tr>
</thead>
<?php
$query=$conn->query("SELECT * FROM users ORDER BY id_user ASC");
while($row=$query->fetch()){
$id=$row['id_user'];
$name=$row['username'];
$nama=$row['nama'];
$role=$row['role'];
$status=$row['status'];
?>
<tr>
<td>
<?php echo $id ;?>
</td>
<td>
<?php echo $name ;?>
</td>
<td>
<?php echo $nama ;?>
</td>
<td>
<?php echo $role ;?>
</td>
<td>
<?php echo $status ;?>
</td>
<td>
<a href="edituser.php?id=<?php echo $id;?>"><button class="alert-success">Edit</button></a>
</td>
<td>
<a href="deleteuser.php?id=<?php echo $id;?>&role=<?php echo $role;?>" onclick="return confirm('Apa anda yakin akan menghapus user ini?');"><button class="alert-success">Delete</button></a></td>
</td>
</tr>
<?php }?>
</table>
为数据表添加了脚本,但它返回错误,无法重新初始化数据表
$(document).ready(function (){
var table = $('#example').dataTable({
"order": [[ 0, 'asc' ]]
});
});
最佳答案
确定数据库表中“id_user”字段的数据类型为“int”。
然后尝试使用“aaSorting”。引用:http://legacy.datatables.net/release-datatables/examples/basic_init/table_sorting.html
$(document).ready(function() {
$('#example').dataTable( {
"aaSorting": [[ 0, "asc" ]]
} );
} );
关于javascript - 数据表默认排序(升序/降序)不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50115083/
我是一名优秀的程序员,十分优秀!