将内容复制并粘贴到 TinyMCE 输入结果中,结果为臃肿的 HTML
我将 TinyMCE 用于各种项目。我的 ATM 遇到的问题是,许多用户将 Word 或 OpenOffice 等来源的内容复制并粘贴到 TinyMCE 输入中。这通常会导致代码臃肿(例如, 等内容被 OpenOffice 接管)。 TinyMCE 的清理似乎并没有删除这些标签。有没有办法在将文本粘贴到 TinyMCE 输入区域之前去除所有格式?或者是否有另一种方法来防止这种臃肿的代码,例如通过使用 PHP 在服务器端过滤它?
I use TinyMCE for various projects. The problem I'm having ATM is that a lot of users copy&paste content form sources like Word or OpenOffice into the TinyMCE input. This results often in bloated code (e.g. things like <span lang="EN-GB">
being taken over from OpenOffice). TinyMCE's cleanup doesn't seem to remove those tags. Is there a way to strip all formating befor the text is pasted into the TinyMCE input area? Or is there another way to prevent such bloated code, for example by filtring it server side with PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道这是一个 opd 问题,但为了其他可能正在寻找此问题答案的人(就像我一样!)的利益,TinyMCE 现在包含控制粘贴到文本框中的内容的功能。
在 init 调用中,添加“paste”插件,然后设置您需要的任何选项,例如
您可以在 tinyMCE 维基
I know this is an opd question but for the benefit of others who may be searching for an answer to this (like I was!), TinyMCE now includes the ability to control what is pasted into the textbox.
In the init call, add the "paste" plugin and then set whatever options you require, e.g.
You can see all options in the tinyMCE wiki
我使用以下c函数on_preprocess删除所有标签:
在tinymce init中我放置
I remove all tags using the followingc function on_preprocess:
In the tinymce init i place