数据表不起作用 (jQuery)
DataTable doesn't work (jQuery)
我做了一个简单的 table 来在 DataTable 中显示类似这样的数据表。问题是我试过用类似的方式来做。
首先,我把编码放在下面:
<table id="myTable" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Salary</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>61</td>
<td>0,800</td>
</tr>
<tr>
<td>Cedric Kelly</td>
<td>Senior Javascript Developer</td>
<td>Edinburgh</td>
<td>22</td>
<td>3,060</td>
</tr>
<tr>
<td>Sonya Frost</td>
<td>Software Engineer</td>
<td>Edinburgh</td>
<td>23</td>
<td>3,600</td>
</tr>
</tbody>
</table>
我不会忘记像这样调用函数:
<script type="text/javascript">
$(document).ready(function(){
$('#myTable').DataTable();
});
</script>
而且我还按照这样的建议调用了外部资源:
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="//cdn.datatables.net/1.10.4/js/jquery.data"></script>
检查这个 link Demo here 你必须正确包含 js
<link rel="stylesheet" type="text/css" href="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.0/css/jquery.dataTables.css">
<link rel="stylesheet" type="text/css" href="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.0/css/jquery.dataTables_themeroller.css">
<script type="text/javascript" charset="utf8" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.min.js"></script>
<script type="text/javascript" charset="utf8" src="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.0/jquery.dataTables.min.js"></script>
我花了几个小时解决这个问题,结果发现我缺少搜索工作所需的标签:
<thead></thead>
和
<tbody></tbody>
从链接的开头删除 //。并在这些链接之前包含 https://。我也遇到了这个问题。但现在它的工作。
要使 table 正常工作,您可以做的是,
$(window).load(()=>{
setTimeout(() => {
$('table').DataTable();
}, 1100);
})
将 $.noConflict();
添加到您的脚本中:
<script type="text/javascript">
$.noConflict();
$(document).ready(function(){
$('#myTable').DataTable();
});
</script>
我做了一个简单的 table 来在 DataTable 中显示类似这样的数据表。问题是我试过用类似的方式来做。
首先,我把编码放在下面:
<table id="myTable" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Salary</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>61</td>
<td>0,800</td>
</tr>
<tr>
<td>Cedric Kelly</td>
<td>Senior Javascript Developer</td>
<td>Edinburgh</td>
<td>22</td>
<td>3,060</td>
</tr>
<tr>
<td>Sonya Frost</td>
<td>Software Engineer</td>
<td>Edinburgh</td>
<td>23</td>
<td>3,600</td>
</tr>
</tbody>
</table>
我不会忘记像这样调用函数:
<script type="text/javascript">
$(document).ready(function(){
$('#myTable').DataTable();
});
</script>
而且我还按照这样的建议调用了外部资源:
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="//cdn.datatables.net/1.10.4/js/jquery.data"></script>
检查这个 link Demo here 你必须正确包含 js
<link rel="stylesheet" type="text/css" href="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.0/css/jquery.dataTables.css">
<link rel="stylesheet" type="text/css" href="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.0/css/jquery.dataTables_themeroller.css">
<script type="text/javascript" charset="utf8" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.min.js"></script>
<script type="text/javascript" charset="utf8" src="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.0/jquery.dataTables.min.js"></script>
我花了几个小时解决这个问题,结果发现我缺少搜索工作所需的标签:
<thead></thead>
和
<tbody></tbody>
从链接的开头删除 //。并在这些链接之前包含 https://。我也遇到了这个问题。但现在它的工作。
要使 table 正常工作,您可以做的是,
$(window).load(()=>{
setTimeout(() => {
$('table').DataTable();
}, 1100);
})
将 $.noConflict();
添加到您的脚本中:
<script type="text/javascript">
$.noConflict();
$(document).ready(function(){
$('#myTable').DataTable();
});
</script>