微小的 MCE 负载清理

发布于 2024-12-11 19:30:39 字数 194 浏览 0 评论 0原文

当从 MS Word 粘贴某些内容时,我对 tinymce 生成的方式有问题。Tiny MCE 有一个 Paste_auto_cleanup_on_paste 选项:true,它修复了任何新内容。但是我在数据库中有一些现有内容,它们仍然被格式化为大量生成的内容不必要的东西。加载tinymce时有什么方法可以执行paste_auto_cleanup_on_paste函数吗?

I had issue with the way tinymce generates when some content is pasted from MS Word .Tiny MCE has an option for paste_auto_cleanup_on_paste : true which fixed it for any new content.But I have some existing content in database which still is formatted with lot of generated unnecessary stuff. IS there any way to perform paste_auto_cleanup_on_paste function when tinymce is loaded ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一绘本一梦想 2024-12-18 19:30:39

好吧,您可以在 Init 上执行清理操作(即在加载初始内容之后)。这是必要的安装配置设置

setup : function(ed) {
   ed.onInit.add(function(ed, evt) {
       ed.execCommand('mceCleanup');
   });
},

Well, you can perform the cleanup action onInit (thats right after the initial content is loaded). This is the necessary setup configuration setting

setup : function(ed) {
   ed.onInit.add(function(ed, evt) {
       ed.execCommand('mceCleanup');
   });
},
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文