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.
我正在设计一个 HTML 页面,我有一个编辑器,用户可以在其中编写一些文本,或者他们可以粘贴一些信息。但我需要的是,无论何时粘贴数据,都应根据我的要求对其进行格式化并粘贴。
例如:- 我们应该能够知道用户已粘贴此内容,而不是自己输入。(格式如左右缩进,或在引号中粘贴内容等。)
我正在使用 tinyMCE,但不知道如何实现它。
您可能想查看粘贴插件。此插件需要正确配置。在这里查看文档。
编辑:记录粘贴内容并修改粘贴结果的示例:
paste_preprocess : function(pl, o) { console.log('Object', o); console.log('Content:', o.content); o.content = '<span>' + o.content + ' TEST</span>'; }