DataTable不起作用(jQuery)

时间:2015-01-10 06:39:00

标签: javascript jquery html datatable

我已经制作了一个简单的表格来显示DataTable中的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>$320,800</td>
        </tr>
        <tr>
            <td>Cedric Kelly</td>
            <td>Senior Javascript Developer</td>
            <td>Edinburgh</td>
            <td>22</td>
            <td>$433,060</td>
        </tr>
        <tr>
            <td>Sonya Frost</td>
            <td>Software Engineer</td>
            <td>Edinburgh</td>
            <td>23</td>
            <td>$103,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>

问题是它不起作用,显示为here.这是JSFIDDLE。任何的想法?感谢。

3 个答案:

答案 0 :(得分:3)

检查此链接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>

答案 1 :(得分:0)

我花了几个小时来解决这个问题,结果发现我缺少搜索工作所需的标签:

<thead></thead>

<tbody></tbody>

答案 2 :(得分:0)

从链接的开头删除//。并在这些链接之前添加 https:// 。我也面临这个问题。但是现在它可以工作了。