【发布时间】:2012-04-03 17:49:13
【问题描述】:
我在 UIWebView 中有一个 contentEditable div。我想禁用拼写检查功能。
UIWebView 中有 API 吗?
谢谢。
【问题讨论】:
标签: iphone ios ipad uiwebview contenteditable
我在 UIWebView 中有一个 contentEditable div。我想禁用拼写检查功能。
UIWebView 中有 API 吗?
谢谢。
【问题讨论】:
标签: iphone ios ipad uiwebview contenteditable
对我来说这是可行的:
<div autocomplete="off" autocorrect="off" contenteditable="true" />
【讨论】:
【讨论】:
你试过了吗?
<div autocorrect="false" contenteditable="true"></div>
【讨论】: