我刚刚使用jquery数据表,但它不工作,我不知道为什么!我尝试了几个解决方案,但很有帮助。有人能帮帮我吗?
我单独包含了所有文件。
<link rel="stylesheet" href="css/style.css" type="text/css"/>
<link rel="stylesheet" href="css/jquery-ui-1.10.4.custom.css"/>
<link rel="stylesheet" href="css/datatables.css"/>
<script src="script/jquery-1.10.2.min.js"></script>
<script src="script/jquery-ui-1.10.3.custom.js"></script>
<script src="script/tables.js"></script>
<script src="script/datatables.js"></script>
表格:
<table align="center" width="820" id="producttable"
<thead>
<tr>
<th>Id</th>
<th>Product Code</th>
<th>Product Name</th>
<th>Img Name</th>
也是初始化表格的代码:
$(document).ready(function(){
$('#producttable').dataTable();
});