jQuery dataTable仅在PROD中崩溃

时间:2013-07-12 19:10:44

标签: jquery jquery-ui datatables

我的dataTable崩溃了,就是搜索框突然消失,行被切断了。它不会在本地或QA环境中发生,仅在生产中显示近120行。这是代码:

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>title...</title>
        <script type="text/javascript" language="javascript" src="../jquery.js"></script>
        <script type="text/javascript" language="javascript" src="../jquery.dataTables.min.js"></script>
        <script type="text/javascript" language="javascript" src="../jquery-ui-1.8.4.custom.min.js"></script>
        <link rel="stylesheet" href="../jquery-ui-1.8.4.custom.css"/>
        <script type="text/javascript" charset="utf-8">
            $(document).ready(function() {
                $("#table").dataTable( {
                    "bStateSave": true,
                    "bPaginate": false,
                    "bLengthChange": true,
                    "bFilter": true,
                    "bInfo": false,
                    "bAutoWidth": false
                });
            });
        </script>
        <style type="text/css">
            .newline{
                margin : 0px;
                font-weight: bold;
            }
        </style>
    </head>
    <body>
        <form method="post" action="table.jsp">
           //geting some input from the user
        </form>

       <fieldset style="margin-top: 50px;">
            <legend>legend</legend>
            <table class="tbl" id="table">
                <thead>
                    <tr>
                        <th>th1</th>
                        <th>th2</th>
                    </tr>
                </thead>
                <tbody>
                    //filling the table out
                </tbody>
            </table>
        </fieldset>
    </body>
</html>

- 不是jquery客户端脚本?那为什么它只在一个环境中崩溃? - 我可以修改代码以防止将来出现吗?

我完全是jquery的初学者。谢谢你的帮助。

0 个答案:

没有答案