摘要:
1 timeArray = new Array(); //临时数组变量 2 var timeStatusBar = new Ext.ux.StatusBar({ 3 id: 'statusbar', 4 defaultText: '选择时间列表', 5 }); 6 var timeSelectModel = new Ext.grid.CheckboxSelectionModel({ 7 checkOnly:true, 8 singleSelect:fals... 阅读全文
摘要:
Array.prototype.contains = function (elem) { for (var i = 0; i < this.length; i++) { if (this[i] == elem) { return true; } } return false; } Array.prototype.indexOf = function(o){ for(var i = 0 ; i<this.length;i++){ if... 阅读全文