QueryTableModel.prototype.creatTable = function(
on) {
var that = this;
var indexWidth = '40px';
if (this.tableModel && this.tableModel.indexWidth) {
indexWidth = this.tableModel.indexWidth;
}
//默认初次初始化查询
this.firstQuery = true;
if (typeof on != 'undefined') {
this.firstQuery = on;
}这个on仅仅值得是boolean类型的值吗?如果是那这样的关键字为什么能进行传参呢?不是有on这个方法吗?
添加回答
举报
0/150
提交
取消