如何避免 iphone safari 首字母大写
我正在设计一个针对 iPhone/iPod touch 的小网页。我有一个要求用户输入代码的表单。当您点击相应字段时,iPhone 会自动将第一个字母设置为大写。有什么办法可以避免这种情况吗?我希望整个字段都以小写字母输入。
谢谢
I am designing a small webpage targeted for the iPhone/iPod touch. I have a form that requires the user to enter a code. When you tap on the corresponding field, the iphone will automatically set the first letter to caps. Is there any way to avoid this? I want the whole field to be entered in small caps.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:使用“无”而不是“关闭”。在您的网页上,您所需要做的就是将输入字段的自动大写属性设置为关闭。因此:
请参阅 Safari Web 内容指南:设计表单 和 Safari HTML 参考< /a>
下面是我之前的答案,与原生应用程序有关。为任何正在寻找答案的人提供帮助。
来自 UITextField 文档
所以基本上,UITextField 支持这个协议。所需的属性是 autocapitalizationType。代码中的一个示例是:
或者如果您不喜欢点符号:
Edit: use "none" instead of "off". On your webpage, all you need to do is set the autocapitalize property to off for your input field. So:
See the Safari Web Content Guide: Designing Forms and Safari HTML Reference
Below is the answer I had before, which relates to native apps. Keeping around for anyone who's looking for that answer.
From the UITextField Documentation
So basically, the UITextField supports this protocol. The property needed is the autocapitalizationType. An example in code is:
or if you dislike the dot notation:
对于其他输入类型,可以使用一些属性来执行它们所说的操作:
For other input types, there are attributes available that do what they say: