As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center提供指导。




已关闭8年。




我有兴趣使用jQuery dataTable ...
你能告诉我并给我一个例子,如何使用它吗..我也听说过jqGrid ..这两个都更好吗?

我一直在尝试下载dataTable。
<script type="text/javascript" src="jquery.dataTables.js"></script>
<script type="text/javascript">
 $(document).ready(function() {
  $('#showdata').dataTable( {
 //what must i fill in this area?
});
});
</script>

最佳答案

我尝试了两者,并决定使用datatables。我发现它具有更好的文档,更好的社区支持,并且启动和使用此插件更加简单。

基本上,如果您有这样的html代码:

<table>
    <thead>
        <tr>...</tr>
    </thead>
    <tbody>
       <tr>...
    </tbody>
</table>

(请注意 thead tbody )

然后,您的示例应生成不错的数据表。有许多参数可以对其进行自定义,但是使用它们是可选的。

您还应该考虑是否要基于以下条件生成数据表:
  • 静态html内容(加载一次)
  • 从您的服务器接收到的
  • 内容

  • 这两个选项对于数据表都是可能的,并且在datatables.net上都有很多示例。

    如有任何问题,请提供详细信息。

    关于jquery - jqGrid还是dataTable,哪个更好? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3091227/

    10-13 00:34