在UIWebView中禁用autocapitalize为可信任的div

时间:2013-04-09 10:30:56

标签: ios cocoa-touch uiwebview

我有一个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,但仍然没有乐趣。

1 个答案:

答案 0 :(得分:2)

autocapitalizeautocorrectautocomplete仅支持输入和表单标记。请参阅文档中的Related Tags