如何避免 iphone safari 首字母大写

发布于 2024-08-08 12:19:04 字数 130 浏览 3 评论 0原文

我正在设计一个针对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧瑾黎汐 2024-08-15 12:19:04

编辑:使用“无”而不是“关闭”。在您的网页上,您所需要做的就是将输入字段的自动大写属性设置为关闭。因此:

<input autocapitalize="none">

请参阅 Safari Web 内容指南:设计表单Safari HTML 参考< /a>

下面是我之前的答案,与原生应用程序有关。为任何正在寻找答案的人提供帮助。

来自 UITextField 文档

可以使用 UITextInputTraits 协议提供的属性来自定义键盘本身的外观。文本字段对象实现此协议并支持它定义的属性。您可以使用这些属性来指定要显示的键盘类型(ASCII、数字、URL、电子邮件等)。您还可以配置键盘的基本文本输入行为,例如是否支持自动大写和文本校正。

所以基本上,UITextField 支持这个协议。所需的属性是 autocapitalizationType。代码中的一个示例是:

myUITextField.autocapitalizationType = UITextAutocapitalizationTypeNone;

或者如果您不喜欢点符号:

[myUITextField setAutocapitilizationType:UITextAutocapitalizationTypeNone];

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:

<input autocapitalize="none">

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

The appearance of the keyboard itself can be customized using the properties provided by the UITextInputTraits protocol. Text field objects implement this protocol and support the properties it defines. You can use these properties to specify the type of keyboard (ASCII, Numbers, URL, Email, and others) to display. You can also configure the basic text entry behavior of the keyboard, such as whether it supports automatic capitalization and correction of the text.

So basically, the UITextField supports this protocol. The property needed is the autocapitalizationType. An example in code is:

myUITextField.autocapitalizationType = UITextAutocapitalizationTypeNone;

or if you dislike the dot notation:

[myUITextField setAutocapitilizationType:UITextAutocapitalizationTypeNone];
年少掌心 2024-08-15 12:19:04

对于其他输入类型,可以使用一些属性来执行它们所说的操作:

<input type="text" autocorrect="off" autocapitalize="off">

For other input types, there are attributes available that do what they say:

<input type="text" autocorrect="off" autocapitalize="off">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文