Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/database/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Internet explorer CKEditor IE8问题_Internet Explorer_Ckeditor_Wysiwyg - Fatal编程技术网

Internet explorer CKEditor IE8问题

Internet explorer CKEditor IE8问题,internet-explorer,ckeditor,wysiwyg,Internet Explorer,Ckeditor,Wysiwyg,是否有人在CKEditor和IE8中遇到过此问题 基本上,当内容包含嵌套的p标记时,您无法编辑内容 i、 e 此内容不能在IE8中更改 有人有办法吗 更新了一个例子 很抱歉将此问题拉回来,当div通过content.css或inline具有宽度或高度时,会导致此问题。例如: <div style="width:400px"> <p>This content cannot be changed in IE8</p> </div> 此内容不能在

是否有人在CKEditor和IE8中遇到过此问题

基本上,当内容包含嵌套的p标记时,您无法编辑内容

i、 e


此内容不能在IE8中更改

有人有办法吗

更新了一个例子

很抱歉将此问题拉回来,当div通过content.css或inline具有宽度或高度时,会导致此问题。例如:

<div style="width:400px">
<p>This content cannot be changed in IE8</p>
</div>

此内容不能在IE8中更改


我试图通过插入您提供的HTML来重新解决您的问题,效果很好。你的案子里还有别的事


你有自己的CSS应用吗?

我现在确实可以复制它了。不太好!:)

事实上,div是可编辑的,只是很难将光标放入其中。可以通过单击div,然后在右边的div之外单击它(至少我能够以这种方式进入字段)。内容本身是可编辑的

这已经作为一个文件归档。它有一个值得一看的地方:

使用此修补程序,其行为与FCKeditor相同,因此在单击并等待一段时间后,可以编辑具有布局的元素。这有助于修复#4910,因为现在可以定位隐藏的div(至少我希望如此)


让我们知道补丁是否有效

我使用IE8/7时也遇到了同样的情况。。。在我的例子中,html更像这样:

<div class="width50 floatright">
<p>Some text you can't edit in IE</p>
</div>
<p>This text you can edit in IE</p>
应用上面的补丁确实有效,但是为了让它正常工作,还有一些困难需要解决。您需要重新打包这些文件

请阅读以下内容:


为我工作…

我不能复制这个。你能发布一个链接到一个实例吗?
<div class="width50 floatright">
<p>Some text you can't edit in IE</p>
</div>
<p>This text you can edit in IE</p>
div.width50{
    width:50%;
}
.floatright{
    float:right;
}