有没有一个jquery插件可以使用占位符来显示表单中文本字段的格式?
我正在寻找一个 jquery 插件来显示文本字段的格式,例如“_ _ _ / _/_ _”以暗示用户应该填充日期。有人知道有什么插件吗?
I am seeking a jquery plugin to show the format of a textfield, like "_ _ _ / _/_ _" to imply to the user that it should be filled with a date. Does anybody konws any plugin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎适合:
http://digitalbush.com/projects/masked-input-plugin/< /a>
否则,您可以在输入上设置背景并在焦点上消失。
如果你真的想变得更奇特,你可以将其分成三个输入(许多较大的应用程序都这样做),并使用 JS 在达到字符限制时将用户的光标跳转到下一个输入。
This seems to fit:
http://digitalbush.com/projects/masked-input-plugin/
Otherwise, you could set the background on the input and disappear it on focus.
If you really want to get fancy, you could break it into three inputs (lots of larger apps do this) and use JS to jump a user's cursor to the next one when one's charlimit is reached.