转自 给力技术
tablecloth.js 是基于 Twitter Bootstrap 的 jQuery 插件 ,可让你快速对表格加上漂亮的样式并增加一些额外的扩展功能。它的定制性比较高,有多个参数可以设置,目前内置了4种样式主题,你还可以再添加新的主题。此外,它也集成了 tablesorter 插件,美化后的表格也会有排序功能。
初始化
$("#demo").tablecloth({
theme: "paper",//default,stats,dark,paper四种样式
bordered: true,
condensed: true,
striped: true,
sortable: true,
clean: true,
cleanElements: "th td",
customClass: "my-table"
});