Phonegap iOS输入和contenteditable错误

时间:2012-10-22 11:44:35

标签: html ios cordova contenteditable

点击具有contenteditable属性的div:

<div contenteditable>Try typing here</div>

或任何输入,键盘出现,但用户无法输入。

这是Phonegap 2.1.0中的错误吗?

2 个答案:

答案 0 :(得分:4)

这部分Css在Cordova v5.1.1

中运行得更好
*[contenteditable] {
    -webkit-user-select: auto !important;
}

答案 1 :(得分:3)

通过删除CSS中的默认行来解决此问题:

* {
    -webkit-user-select: none;
}