var SortingTable = new Class({
initialize: function( table, options ) {
this.table=$(table);
this.tbody = this.table.getElement('tbody');
//...do alot of things here...
},
addTextInput : function(index,headid,options){
var trs = this.tbody.getChildren();
var trslen = trs.length;
var i=0;
var cell = null;
for(i=0;i
以上就是accessing variables and methods of parent javascript object?的详细内容,更多请关注web前端其它相关文章!