1

我在 WordPress 插件中使用cleditor作为我选择的富文本编辑器。

然而,看似随机的,它决定插入<span class="Apple-style-span">到我的内容中。

我做了一个快速的谷歌,找不到任何东西cleditor,但显然在 Webkit 浏览器上ckeditor有一个类似的错误——我网站上的两个内容作者都使用谷歌浏览器。这已被记录为 webkit 的错误

有谁知道如何解决这个问题,str_replace除了在保存或查看内容时做一个 PHP 吗?

以下是输出示例:

<h2 id="notes" class="profile_notes">Notes</h2>
<p>
    <span class="Apple-style-span" style="background-color: rgb(255, 255, 255); ">
        <div>
            This species is assigned the codes A220, A221 and A222 under the DATZ 'A' number system with these referring to similar-looking, possibly conspecific, populations. These differ in some aspects of colour pattern, particularly the orientation of the caudal-fin markings which may be horizontal, vertical, or somewhere inbetween.
        </div>
        <div>
            <br>
        </div>
        <div>
            One population displays an orange colouration on the belly and is sometimes referred to as A. mendezi 'orange' (A222) while another known as A. sp. 'fork-band' or 'gabelband' and collected in the rio Jaú may also represent a form of A. mendezi.
        </div>
        <div>
            <span class="Apple-style-span" style="background-color: rgb(255, 255, 255); ">
                <br>
            </span>
        </div>
            Apistogramma&nbsp;is...
        </div>
    </span>
</p>

提前致谢,

4

1 回答 1

1

这是execcommand在 javascript 中调用时出现的“功能”(在不同的浏览器中具有不同的结果),有助于总结http://www.quirksmode.org/dom/execCommand.html

我不知道这是否可以在浏览器中规避,但我对此表示怀疑。最好的方法是使用 lxml 或 BeautifulSoup 在后端删除“有问题的”HTML 类。

于 2012-04-08T11:40:49.690 回答