Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将自定义滚动条集成到 TinyMCE 编辑器。请指导我如何集成它。
网址: http: //manos.malihu.gr/tuts/jquery_custom_scrollbar.html
您摆脱了默认的 scollbar,您可以将此 css 应用于编辑器 iframe(您可能需要更精确,否则您也可以从其他 iframe 中删除滚动条)
iframe { overflow:hidden; }
这是将 css 文件放入 tinymce 编辑器 iframe 头的必要代码
var ed = tinymce.get('your_editor_id'); ed.dom.loadCSS( 'url_to_css_file');