如何在可满足内容的元素中插入Figure元素?

How would you insert a Figure element in a contenteditable element?

本文关键字:元素 插入 Figure 可满足      更新时间:2023-09-26

我想知道如何实现在可满足元素中插入<figure>元素的命令。Document.execCommand()提供了一个insertImage命令,但没有像我正在寻找的。

下面是我想插入的代码片段:

<figure>
    <img src="http://example.org/image.jpg" alt="some text" />
    <figcaption>Here is a caption</figcaption>
</figure>

谢谢

您可以添加自定义命令并添加带有src和标题的图形。

见https://jsfiddle.net/2qjcLosq/

execCommand('insertfigure' ,'you_src','your_caption');