在 CKEditor 我有 xsl 模板(这就是我在 img 中有 xsl 标签的原因)。问题是当我删除图像时,img 中的标签没有被删除。
<span contenteditable="false">
<span contenteditable="true">
<img alt=" legenda" contenteditable="true" height="200px" id="legendImg" src="/rp/resources/css/images/tpl/legenda.png" width="400px">
<xsl:attribute contenteditable="false" name="src"><xsl:value-of contenteditable="false" select="legend"></xsl:value-of></xsl:attribute>
</img>
</span>
</span>
在编辑器中单击图像并删除后,我得到
<p><span contenteditable="false">
<span contenteditable="true">
<xsl:attribute contenteditable="false" name="src">
<xsl:value-of contenteditable="false" select="legend">
</xsl:value-of>
</xsl:attribute></span></span></p>
我需要一些指示什么是解决这个问题的最佳方法。也许有一种简单的修复方法,或者我应该听某种删除事件。