文件名称:js树形table
文件大小:5KB
文件格式:JS
更新时间:2015-12-26 10:01:34
treetable 树形 js
使用代码: function init() { $.treetable.defaults = { id_col : 1,// ID td列 {从0开始} parent_col : 2,// 父ID td列 handle_col : 3,// 加上操作展开操作的 td列 open_img : "../images/minus.gif", close_img : "../images/plus.gif" }; $("#tbody").treetable(); // 隐藏数据列 $("#tbody tr").find("td:eq(1)").hide(); $("#tbody tr").find("td:eq(2)").hide(); $("#grid tr:eq(0)").find("th:eq(1)").hide(); $("#grid tr:eq(0)").find("th:eq(2)").hide(); }