摘要:
var Class = { create: function() { return function() { this.initialize.apply(this, arguments); } } } var table = Class.create();table.prototype = { initialize: function(a,b,c,d,e){ if(document.getElementById(a) && document.getElementById(c)){ this.b = document.getElementById(a).getElem... 阅读全文