我需要从 ckeditor 按钮访问我的代码隐藏点击事件。我正在为我的自定义 ckeditor 按钮(函数(){
//Section 1 : Code to execute when the toolbar button is pressed
var a = {
exec: function (editor) {
var testObj = editor.parentNode;
var count = 1;
while (testObj.getAttribute('id') != "form1") {
testObj = testObj.parentNode;
}
testObj.getElementById('<%= btnUserControls.ClientID %>').click();
}
},
//Section 2 : Create the button and add the functionality to it
b='usercontrols';
CKEDITOR.plugins.add(b,{
init:function(editor){
editor.addCommand(b,a);
editor.ui.addButton('usercontrols', {
label:'User Controls',
icon: this.path + 'ascx.png',
command:b
});
}
});
})();
但我认为这段代码无法到达我的 Asp.Net 按钮。我错在哪里?谢谢。