禁用 UIWebView 中 contenteditable div 的自动大写

Posted

技术标签:

【中文标题】禁用 UIWebView 中 contenteditable div 的自动大写【英文标题】:Disabling autocapitalize for a contenteditable div within a UIWebView 【发布时间】:2013-04-09 10:30:56 【问题描述】:

我有一个 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】:

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

【讨论】:

以上是关于禁用 UIWebView 中 contenteditable div 的自动大写的主要内容,如果未能解决你的问题,请参考以下文章

如何在 UIWebView 中禁用双击事件

如何在 UIWebView 中禁用 cookie?

在 UIWebView/WKWebview 中禁用自动完成

禁用 UIWebView 中 contenteditable div 的自动大写

禁用 UIWebView 和/或 WKWebView 中样式表的加载

如何在UIWebView中禁用长触摸?