codeigniter - 输入表单占位符
大家好,我如何在 CodeIgniter 的 form_input()
辅助函数中使用占位符标记?
谢谢 :)
Hey all, how can I use the placeholder tag in CodeIgniter's form_input()
helper function?
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你的意思是占位符属性(不是标签)?
form_input()
采用带有附加属性的第三个参数。或者您可以传递
form_input()
一个数组。CodeIgniter 表单助手
Do you mean the placeholder attribute (not tag)?
form_input()
takes a third parameter with additional attributes.Or you can pass
form_input()
an array.CodeIgniter Form Helper
Rocket 链接到的 Codeigniter 用户指南表明,名称和值以外的属性作为数组传递给 form_input():
要扩展 Rocket 的答案,请将
'placeholder'=>'my_placeholder'
传递到该数组应该生成占位符属性。请记住,占位符属性是非常新的,并非所有浏览器都支持。在 html 中心查看 这篇文章,了解 html5、jQuery 和 pure javascript 实现占位符的方法
The Codeigniter user guide linked to by Rocket indicates that attributes other than name and value are passed to form_input() as an array:
To expand on Rocket's answer, passing
'placeholder'=>'my_placeholder'
into that array should produce the placeholder attribute.Keep in mind, the placeholder attr is very new and not supported in all browsers. Check out this article at html center for html5, jQuery, and pure javascript ways to accomplish placeholders
IE6、IE7 和 IE8 的 Codeigniter 表单占位符
Codeigniter form placeholder for IE6, IE7 and IE8
你可以像这样设置占位符
,看起来像这样
you can set placeholder like this
this will look like this