使用CKEditor 3.x
我正在编辑器上捕获“saveSnapshot”事件,将“click”事件绑定到具有特殊属性的div,例如:(data-type =“notes”)。我只找到了document.getById()。由于文档中可能存在重复,我无法使用ID。有什么方法可以通过id以外的任何方式进行搜索吗?
我也尝试过使用过滤器但是无法以这种方式绑定“click”事件(使用extjs和jquery)..它是一种不同类型的元素对象(内部)
editor.dataProcessor.htmlFilter.addRules(
{
elements :
{
div : function( element )
{
if (element.attributes.data-notes) {}
}
}
});