(function(){ X.pageLogic['usergroup'] = { init : function(parms){ var fixedTable = new FixedTable({ wrap: document.getElementById("eventattradmin-table"),//生成的表格需要放到哪里 type: "row-col-fixed",//表格类型,有:head-fixed、col-fixed、row-col-fixed extraClass: "",//需要添加到表格中的额外class maxHeight: true, fields: [//表格的列 { width: "100px", field: "日期", fixed: true, }, { width: "100px", field: "姓名", }, { width: "100px", field: "省份", //fixed: true, }, { width: "100px", field: "市区" }, { width: "100px", field: "地址", // fixed: true, }, { width: "100px", field: "邮编", }, { width: "100px", field: "邮编", }, { width: "100px", field: "邮编", }, { width: "100px", field: "邮编", } ], tableDefaultContent: "
我是一个默认的div
" }); fixedTable.addRow(function (){ var html = ''; for(var i = 0; i < 15; i ++){ html += ''; html += '
2016-05-03
'; html += '
王小虎' + i + '
'; html += '
上海' + i + '
'; html += '
普陀区' + i + '
'; html += '
上海市普' + i + '
'; html += '
200333' + i + '
'; html += '
200333' + i + '
'; html += '
200333' + i + '
'; html += '
200333' + i + '
'; html += ''; } return html; }); } }; })();