#Table.js HTML 表格控制器(添加/删除/排序/搜索行)
##下载
通过bower install table.js或npm install table.js
##API 快速入门
表构造器
var myTable = new Table ( {
'id' : 'myTable' , // id of table element
'class' : 'table' , // classes of element
'columns' : [ 'Column1' , 'Column2' , 'Column3' ] , // name of columns
'data' : [
[ 'value1' , 'value2' , 'value3' ] , // values of first row
[ 'value1' ,
1