我有一个UIWebView,它可以加载一个带有contenteditable div的基本html页面。该div具有以下属性:
<div id="editor"
contenteditable="true"
autocapitalize="none"
autocorrect="off"
autocomplete="off">#CONTENT#</div>
但是,在iOS 5和iOS 6中,句子仍在大写。
我尝试将autocapitalize
设置为off
,但是根据Safari HTML Reference将其设置为none
,但仍然没有乐趣。
答案 0 :(得分:2)
autocapitalize
,autocorrect
,autocomplete
仅支持输入和表单标记。请参阅文档中的Related Tags
。