|  |  |  | 
|---|
|  |  |  | return options || null; | 
|---|
|  |  |  | }, getData: function () { | 
|---|
|  |  |  | return options.data || null; | 
|---|
|  |  |  | }, getHtmlData: function () { | 
|---|
|  |  |  | return that.getHtmlData() || null; | 
|---|
|  |  |  | }, geticeEditorObjects: function () { | 
|---|
|  |  |  | return iceEditorObjects || null; | 
|---|
|  |  |  | },getImages:function () { | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | $('.generateHtml').on('click', function () { | 
|---|
|  |  |  | $('.generateHtmlData').on('click', function () { | 
|---|
|  |  |  | var _html = $('<div style="height:100%;width:100%;"></div>'); | 
|---|
|  |  |  | var _script = $('<div style="height:100%;width:100%;"></div>'); | 
|---|
|  |  |  | that.generateHtml(options.data, _html,_script); | 
|---|
|  |  |  | 
|---|
|  |  |  | return json; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //获取表单数据回调 | 
|---|
|  |  |  | Class.prototype.getHtmlData = function () { | 
|---|
|  |  |  | var that = this, | 
|---|
|  |  |  | options = that.config; | 
|---|
|  |  |  | var _html = $('<div style="height:100%;width:100%;"></div>'); | 
|---|
|  |  |  | var _script = $('<div style="height:100%;width:100%;"></div>'); | 
|---|
|  |  |  | that.generateHtml(options.data, _html,_script); | 
|---|
|  |  |  | return _html.html(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //递归改变禁用属性 | 
|---|
|  |  |  | Class.prototype.findItemToDisable = function (jsondata) { | 
|---|
|  |  |  | var that = this | 
|---|