我可以通过这样的按钮单击轻松地用 span 标签包装文本选择;
this.toolbar.on(
'testClick',
function(o)
{
var sel = myEditor._getSelection();
myEditor.execCommand('inserthtml', '<span class="test">' + sel + '</span>');
alert(myEditor);
},
myEditor, true);
我想要实现的是将 iframe 中的这个 span 类('test')绑定到一个 javascript 事件;
testEvent = function {
alert('Hello World!')
}
如果可能的话,有什么想法吗?