6

在 iOS 6.1 Safari 上点击文本区域时,CKEditor 4.0.1 无法聚焦。这发生在 iphone 和 ipad(都运行 iOS 6.1)上。我最终可以通过点击它几次来让它集中。有时需要 5 次点击,有时需要 10 或 15 次。如果我单击粗体按钮,它会立即聚焦。有任何想法吗?有没有办法让我手动捕获点击事件,然后调用一些会聚焦编辑器的东西?我正在使用 jquery。

4

2 回答 2

2

在 editor-test.css 中添加 和 元素将解决height:100%;此问题HTMLBODY最终代码将是这样的:

html {height:100%;}
body {
    font-family: "lucida grande",tahoma,verdana,arial,sans-serif;
    font-size: 12px; 
    line-height:1.4em;
    color: #333; 
    height:100%;
}
于 2013-02-20T10:27:49.840 回答
1

我知道这是一个老问题,但我最近遇到了这个问题。

ckeditor文件夹中我编辑了contents.css文件。(它为编辑器的内容设置样式)

在该body部分中,我添加了:

body 
{
    /* [other code is left as found] */

    /* Add the line below  */
    min-height: calc( 100% - 40px );
}

这考虑了 config.js 中定义的不同自定义高度和margin: 20px声明(这似乎是默认值)。

于 2014-12-19T19:45:33.337 回答