在TinyMCE 4编辑器中定位元素(比如给定类的所有图像)的最佳方法是什么。我发现了一些较旧的解决方案(即Adding hover event to elements inside a tinymce editor),但它们适用于TinyMCE 3.请注意,元素可以在初始渲染后添加到编辑器中,因此需要jQuery的on()
功能。< / p>
一种选择可能是做$('#tinymce_id').contents()...
。
或者在配置TinyMCE时,tinymce.init({'selector': '#tinymce_id','setup' : function(ed) {do something here?}});
答案 0 :(得分:4)
我找到的最佳方式。
tinymce.init({
'selector': "#tinymce_id",
'setup' : function(ed) {
ed.on('init', function(e) {
$(ed.getBody()).on("click", "img", function() {alert('hello');});
});
}
});
答案 1 :(得分:2)
使用此逻辑:
//on click event
$("#test").click(function(){
//get the text of the tinymce editor and convert it to an html element
html = $.parseHTML(tinymce.activeEditor.getContent());
//do anything with the content here
$(html).find("img.editor-img").css("width", "100px");
//convert it back to text
text = $(html).html();
//add it to the tinymce
tinymce.activeEditor.setContent(text);
});