Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
单击具有属性 contenteditable 的 div 时:
<div contenteditable>Try typing here</div>
或任何输入,键盘出现,但用户无法键入。
这是 Phonegap 2.1.0 中的错误吗?
这段 Css 配合 Cordova v5.1.1 效果更好
*[contenteditable] { -webkit-user-select: auto !important; }
通过删除 CSS 中的默认行来解决此问题:
* { -webkit-user-select: none; }