这个DataTables实现有什么问题?

时间:2015-03-04 14:42:24

标签: jquery asp.net .net asp.net-mvc jquery-datatables

我努力让数据表插件在我的网站上运行。这是一个.Net 4.5 MVC Web应用程序。我通过nuGet安装了jQuery(2.1.3)和DataTables(1.10.4)。我一直在尝试各种设置,并尝试使用数据表网站上的示例完全替换我的代码而没有运气。谁能告诉我我做错了什么?

<script src="~/Scripts/jquery-2.1.3.min.js"></script>
<script src="~/Scripts/DataTables-1.10.4/jquery.dataTables.js"></script>
<link href="~/Content/DataTables-1.10.4/css/jquery.dataTables.css" rel="stylesheet" />


<div class="col-md-12">    
    <table id="searchInventoryResults" class="display">
        <thead>
            <tr>
                <th>Assigned Location</th>
                <th>Manufacturer</th>
                <th>Model</th>
                <th>Serial Number</th>
                <th>MCSC Tag Number</th>
                <th>PO Number</th>                
                <th>Salvage Date</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>CCC floor-6 F-3</td>
                <td>Toshiba</td>
                <td>LR-1</td>
                <td>100215555</td>
                <td>523144632</td>                                
                <td>522133354</td>
                <td>11/13/2225</td>
            </tr>
            <tr>
                <td>CCC floor-5 G-3</td>
                <td>Toshiba</td>
                <td>LR-1</td>
                <td>100215566</td>
                <td>523144566</td>
                <td>522133366</td>
                <td>11/13/2235</td>
            </tr>
        </tbody>
    </table>
    <script>
        $(document).ready(function () {
            $('#searchInventoryResults').DataTable();
        });
    </script>

脚本和css路径是从项目中驻留的文件夹中拖放的。我目前还有两个其他jQuery功能在网站上完美运行。

具体来说,没有任何功能出现。没有搜索框,我无法点击列,css不会影响表格。

0 个答案:

没有答案