在 Summernote 编辑器中粘贴时如何禁用文本格式?

发布于 2025-01-11 08:15:41 字数 90 浏览 0 评论 0原文

在 Summernote 编辑器中粘贴时如何禁用文本格式? 如何关闭文本格式,例如当你用word粘贴时等等总是添加一堆不必要的样式。是否可以使其粘贴纯文本而不格式化?

How to disable text formatting when pasting in summernote editor?
how to turn off text formatting, for example when you paste with word, etc. adds a bunch of unnecessary styles all the time. Is it possible to make it paste plain text without formatting?

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

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

发布评论

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

评论(1

如若梦似彩虹 2025-01-18 08:15:41

通过使用 summernote.paste 事件,我们可以跟踪编辑器中的粘贴,然后可以格式化文本或删除不必要的样式。

 $('#id').on('summernote.paste', function(e, ne) {
        //get the text
        let inputText = ((ne.originalEvent || ne).clipboardData || window.clipboardData).getData('Text');
        // block default behavior
        ne.preventDefault();
        //modify paste text as plain text
        let modifiedText = inputText .replace(/\r?\n/g, '<br>');
        //put it back in editor
        document.execCommand('insertHtml', false, modifiedText );
    })

By using summernote.paste event we can track the paste in the editor and then text can be formatted or unnecessary style can be removed.

 $('#id').on('summernote.paste', function(e, ne) {
        //get the text
        let inputText = ((ne.originalEvent || ne).clipboardData || window.clipboardData).getData('Text');
        // block default behavior
        ne.preventDefault();
        //modify paste text as plain text
        let modifiedText = inputText .replace(/\r?\n/g, '<br>');
        //put it back in editor
        document.execCommand('insertHtml', false, modifiedText );
    })
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文