Disable predictive text on iPhone for a form field
Is there an attribute which I can specify for an &开发者_Python百科lt;input>
element which would turn off the predictive text functionality for this given field?
Something along the lines
<input type="text" predictive="disabled" />
There are some options:
<input type="text" autocomplete="off" autocorrect="off" autocapitalize="off">
On a per form field basis you can always do the following:
<input type="text" autocorrect="off" />
From the user side you can
Settings > General > Keyboard > Auto-Correction On/Off.
from the app side, i don't think it can be done.
精彩评论