简体   繁体   English

TinyMCE编辑器-如何集成自定义滚动条

[英]TinyMCE Editor -How to integrate the customization scrollbar

I need to integrate the custom scroll bar to TinyMCE Editor.Can you please guid me how to integrate it. 我需要将自定义滚动条集成到TinyMCE Editor中。请您指导我如何进行集成。

Url: http://manos.malihu.gr/tuts/jquery_custom_scrollbar.html 网址: http//manos.malihu.gr/tuts/jquery_custom_scrollbar.html

You get rid of the defaukt scollbar you may apply this css to the editor iframe (you might need to be more precise, otherwise you could remove scrollbars from other iframes as well) 您摆脱了defaukt滚动条,可以将此CSS应用于编辑器iframe(您可能需要更精确一些,否则也可以从其他iframe中删除滚动条)

iframe {
    overflow:hidden;
}

This is the necessay code to get css files into the tinymce editor iframe head 这是将css文件放入tinymce编辑器iframe头中的必要代码

var ed = tinymce.get('your_editor_id');
ed.dom.loadCSS( 'url_to_css_file');

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM