我的jquery数据表不工作

我的jquery数据表不工作,jquery,datatable,Jquery,Datatable,我刚刚使用了jQueryDataTable,但它不工作,我不知道为什么!我尝试了两种解决方案,但都无济于事。有人能帮我吗 我把所有的文件都单独放进去了 <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

我刚刚使用了jQueryDataTable,但它不工作,我不知道为什么!我尝试了两种解决方案,但都无济于事。有人能帮我吗

我把所有的文件都单独放进去了

    <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>

我猜你的代码在tables.js中?如果是这样,请将其向下移动一步,您可能应该关闭表格标签?请准确解释“不工作”的含义。不工作的意思是它不会显示表格中的任何更改。。所有标签都关闭了,上面的代码只是其中的一部分
<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();
});