admin管理员组文章数量:1332345
What is the best way to target elements (say all images of a given class) in the TinyMCE 4 editor. I found some older solutions (i.e. Adding hover event to elements inside a tinymce editor), however, they apply to TinyMCE 3. Note that elements can be added to the editor after initial rendering, so it would need something like jQuery's on()
functionality.
One option might be to to do something like $('#tinymce_id').contents()...
.
Or maybe when configuring TinyMCE, tinymce.init({'selector': '#tinymce_id','setup' : function(ed) {do something here?}});
What is the best way to target elements (say all images of a given class) in the TinyMCE 4 editor. I found some older solutions (i.e. Adding hover event to elements inside a tinymce editor), however, they apply to TinyMCE 3. Note that elements can be added to the editor after initial rendering, so it would need something like jQuery's on()
functionality.
One option might be to to do something like $('#tinymce_id').contents()...
.
Or maybe when configuring TinyMCE, tinymce.init({'selector': '#tinymce_id','setup' : function(ed) {do something here?}});
2 Answers
Reset to default 5The best way I found to do it.
tinymce.init({
'selector': "#tinymce_id",
'setup' : function(ed) {
ed.on('init', function(e) {
$(ed.getBody()).on("click", "img", function() {alert('hello');});
});
}
});
Use this logic:
- Get TinyMCE text
- Convert it to a DOM (HTML) element
- Select anything using jquery
- Modify or do what you want with those elements selected
- Convert the html back to text
- set the content of the TinyMCE editor to the new html
//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);
});
Example: http://jsfiddle/rqwVA/1/
本文标签: javascriptTarget elements in TinyMCE editorStack Overflow
版权声明:本文标题:javascript - Target elements in TinyMCE editor - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742326274a2453790.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论