所以,我正在构建一个非常复杂的插件并遇到了障碍。(不过这是我学习的方式,所以障碍很好......)我的代码类似于以下内容:
文件 1
if( !window.TextEdit ){
var TextEdit = {"version": "1.0"};
}
TextEdit.edit = function(context, options) {
var self = this;
self.context = context;
self.buttonDef = {
bold: {
class: 'bold',
command: 'bold',
icon: 'bold',
type: 'checkbox',
label: ''
},
italic: {
class: 'italic',
command: 'italic',
icon: 'italic',
type: 'checkbox',
label: ''
},
underline: {
class: 'underline',
command: 'underline',
icon: 'underline',
type: 'checkbox',
label: ''
}
}
self.init();
}
文件 2
if( !window.TextEdit.imageload ){
TextEdit.imageload = {"version": "1.0"};
}
TextEdit.imageload = function() {
var self = this;
self.editor = TextEdit;
self.init();
}
TextEdit.imageload.prototype = {
init: function() {
var self = this;
console.log(self.buttonDef);
$('.tdt-btn-addimage').click(function() {
});
},
create: function() {
},
destroy: function() {
}
}
new TextEdit.imageload();
因此,使用 Document 2,我想访问 Document 1 中的变量 self.buttonDef。我可以访问 Document 1 中的函数,但不能访问变量。
我正在寻找的是如何制作buttonDef
.TextEdit