gpt4 book ai didi

javascript - 将带有样式的 HTML 插入到 QuillJS 中?

转载 作者:行者123 更新时间:2023-11-30 19:25:03 30 4
gpt4 key购买 nike

如何将带有样式 (css) 的 html 插入到 quillJS。我有这样的 html:

var data = '<p style="color: #f00">tesst</p>';

var data = '<style> .pp { color: #0f0;} </style>
<p class="pp">tesst</p>';

我粘贴它

quill_arr[$('#docbody').attr('quill-id')].clipboard.dangerouslyPasteHTML(data);

文本加载但格式为:

<p>tesst</p>

没有所有样式。请帮忙。

最佳答案

放一个 <span>带有 <p> 内的样式似乎有效。

var data = '<p><span style="color: red;">test</span></p>'
quill.clipboard.dangerouslyPasteHTML(data);

检查这个

<!-- Include stylesheet -->
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">

<!-- Create the editor container -->
<div id="editor"></div>

<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>

<script>
// Initialize Quill editor
var quill = new Quill('#editor', {
theme: 'snow'
});

// Insert HTML with style
var data = '<p><span style="color: red;">Hello World!</span></p>'
quill.clipboard.dangerouslyPasteHTML(data);
</script>

关于javascript - 将带有样式的 HTML 插入到 QuillJS 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57002748/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com