//4、多列排序
//示例:http://www.guoxk.com/html/DataTables/Multi-column-sorting.html
//5、隐藏某些列
$(document).ready(function() {
$('#example').dataTable( {
"aoColumnDefs": [
"bSearchable"false"bVisible"false"aTargets": [ 2 ] },
"bVisible"false"aTargets": [ 3 ] }
] } );
} );
//示例:http://www.guoxk.com/html/DataTables/Hidden-columns.html
//6、改变页面上元素的位置
$(document).ready(function() {
$('#example').dataTable( {
"sDom"'<"top"fli>rt<"bottom"p><"clear">'
} );
} );
//l- 每页显示数量
//f - 过滤输入
//t - 表单Table
//i - 信息
//p - 翻页
//r - pRocessing
//< and > - div elements
//<"class" and > - div with a class
//Examples: <"wrapper"flipt>, <lf<t>ip>
//示例:http://www.guoxk.com/html/DataTables/DOM-positioning.html
//7、状态保存,使用了翻页或者改变了每页显示数据数量,会保存在cookie中,下回访问时会显示上一次关闭页面时的内容。
$(document).ready(function() {
$('#example').dataTable( {
"bStateSave"true
} );
} );
//示例:http://www.guoxk.com/html/DataTables/State-saving.html
//8、显示数字的翻页样式
$(document).ready(function() {
$('#example').dataTable( {
"sPaginationType""full_numbers"
} );
} );
//示例:http://www.guoxk.com/html/DataTables/Alternative-pagination-styles.html
//9、水平限制宽度
$(document).ready(function() {
$('#example').dataTable( {
"sScrollX""100%",
"sScrollXInner""110%",
"bScrollCollapse"true
} );
} );
//示例:http://www.guoxk.com/html/DataTables/Horizontal.html
//10、垂直限制高度
//示例:http://www.guoxk.com/html/DataTables/Vertical.html
//11、水平和垂直两个方向共同限制
//示例:http://www.guoxk.com/html/DataTables/HorizontalVerticalBoth.html
//12、改变语言
$(document).ready(function() {
$('#example').dataTable( {
"oLanguage": {
"sLengthMenu""每页显示 _MENU_ 条记录",
"sZeroRecords""抱歉, 没有找到",
"sInfo""从 _START_ 到 _END_ /共 _TOTAL_ 条数据",
"sInfoEmpty""没有数据",
"sInfoFiltered""(从 _MAX_ 条数据中检索)",
"oPaginate": {
"sFirst""首页",
"sPrevious""前一页",
"sNext""后一页",
"sLast""尾页"
},
"sZeroRecords""没有检索到数据",
"sProcessing""<img src='./loading.gif' />"
}
} );
} );
//示例:http://www.guoxk.com/html/DataTables/Change-language-information.html
//13、click事件
//示例:http://www.guoxk.com/html/DataTables/event-click.html
//14/配合使用tooltip插件
//示例:http://www.guoxk.com/html/DataTables/tooltip.html
//15、定义每页显示数据数量
$(document).ready(function() {
$('#example').dataTable( {
"aLengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]]
} );
} );
//示例:http://www.guoxk.com/html/DataTables/length_menu.html

datatables使用的更多相关文章

  1. [jQuery]jQuery DataTables插件自定义Ajax分页实现

    前言 昨天在博客园的博问上帮一位园友解决了一个问题,我觉得有必要记录一下,万一有人也遇上了呢. 问题描述 园友是做前端的,产品经理要求他使用jQuery DataTables插件显示一个列表,要实现分 ...

  2. JQuery Datatables Columns API 参数详细说明

    ---恢复内容开始--- Data Tables: http://datatables.NET/ Version: 1.10.0 Columns说明 虽然我们可以通过DOM直接获取DataTables ...

  3. datatables中的Options总结(3)

    datatables中的Options总结(3) 十.ColReorder colReorder.fixedColumnsLeft 不允许x列重新排序(从左数) colReorder.fixedCol ...

  4. datatables中的Options总结(2)

    datatables中的Options总结(2) 五.datatable,列 columnDefs.targets 分配一个或多个列的列定义. columnDefs 设置列定义初始化属性. colum ...

  5. datatables中的Options总结(1)

    datatables中的Options总结(1) 最近一直研究dataTables插件,下面是总结的所有的选项内容,用了帮助学习datatables插件. 这些选项的配置在$().Datatable( ...

  6. Datatables事件

    DataTables格式化渲染加上的html代码按一般方式绑定事件可能会没效果,通过以下方式可以解决 $(document).on("click","#checkchil ...

  7. jquery Datatables 行数据删除、行上升、行下降功能演示

    Datatables 是一款jquery表格插件.它是一个高度灵活的工具,可以将任何HTML表格添加高级的交互功能. 官方网站:http://www.datatables.net Datatables ...

  8. JQuery表格插件DataTables 当前页合计功能

    公司项目表格插件使用的是DataTables,最近添加表合计功能,发现百度统一都是如图类型的代码,不知道是配置问题还是怎么了,在我的页面下根本不能用 var addd=0; $(document).r ...

  9. datatables服务器端分页要点

    背景:当要查询大量数据的时候,有datatables自身的分页,明显查询比较慢,这是要使用服务器端分页 参数:"bServerSide": true, "fnServer ...

  10. JQuery插件之Jquery.datatables.js用法及api

    1.DataTables的默认配置 $(document).ready(function() { $('#example').dataTable(); } ); 示例:http://www.guoxk ...

随机推荐

  1. ZOJ 3860: - Find the Spy

    3860 - Find the Spy Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu S ...

  2. jsp:和属性相关的方法,请求的转发,重定向

    jsp中与属性相关的方法: 方法: void setAttribute(String name, Object o): 设置属性 Object getAttribute(String name):获取 ...

  3. Android开发中完全退出程序的三种方法

    参考: http://android.tgbus.com/Android/tutorial/201108/363511.shtml Android程序有很多Activity,比如说主窗口A,调用了子窗 ...

  4. 如果在遨游浏览器里设置Bing(必应)搜索为默认搜索

    今天刚装了遨游浏览器,发现搜索引擎列表里没有Bing(必应)搜索的选项,就自己DIY了下. 步骤: 1. 在遨游搜索引擎列表管理里,添加一个新的搜索引擎项: Name:填写上”Bing(必应)“ (这 ...

  5. 2016 Al-Baath University Training Camp Contest-1 H

     Description You've possibly heard about 'The Endless River'. However, if not, we are introducing it ...

  6. Mysql-学习笔记(==》常用函数 八)

    -- 常用函数 字符编码uft8汉字为3个字节 gbk汉字两个字节 gbk占用空间小速度快 utf8兼容性好 -- length 返回字符的字节数SELECT LENGTH('asd王');-- ch ...

  7. Shell脚本编程初体验

    原文:http://linoxide.com/linux-shell-script/guide-start-learning-shell-scripting-scratch/ 作者: Petras L ...

  8. ASP.NET文件的上传下载提交分页

    <%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" Auto ...

  9. Repeater数据绑定

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Index.aspx.cs& ...

  10. (1)定义一个接口Compute含有一个方法int computer(int n,int m); (2)设计四个类分别实现此接口,完成+-*/运算 (3)设计一个类UseCompute,含有方法: public void useCom(Compute com, int one, int two) (4)设计一个测试类

    package b; public interface Computer { int computer(int n,int m); } package b; public class Jia impl ...