Rails:如何“email_field”与“text_field”不同吗?
据我了解,text_field
创建一个 text
类型的输入字段,而 email_field
创建一个 email
类型的输入字段。
但是,这两种输入类型有什么区别?
假设我有一个客户模型,而客户有一封电子邮件。我应该在这里使用 email_field
吗?
I understand that text_field
creates an input field of type text
, while email_field
creates an input field of type email
.
But, what is the difference between these two input types ?
Say I have a client model while a client has an email. Should I use email_field
here ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
电子邮件字段是新的 html 5 输入,目前在大多数机器上的行为相同,但少数移动设备(例如 iPhone)除外,它会切换到不同的键盘。
您可以通过谷歌搜索
html5 email field
找到更多相关信息。这只是一些用户会欣赏的一点技巧。
The email field is the new html 5 input which right now behaves the same on most of the machines with the exception of a few mobile devices such as the iphone where it switches to a different keyboard.
You can find more about it by googling
html5 email field
.It's just a touch of finesse which some users will appreciate.