使用 jQuery 屏蔽和/或格式化?
我正在使用标准的 digitalBush jquery mask 插件。看来我正在与它作斗争。
我只是希望输入有一个掩码(因此它允许 1 或 2 位数字),然后显示“几个月”一词。
IE。用户可以输入 3 个月或 13 个月。我似乎无法做到这一点。这是我能想到的最接近的结果,但如果用户只输入一个数字,它不会在后面附加“月份”。我将其与 HTML5 占位符插件结合使用。
$("#months").mask("9?9 months",{placeholder:" "});
I'm using the standard digitalBush jquery mask plugin. It seems as though I'm fighting with it.
I simply want an input to have a mask (so it'll allow 1 or 2 digits) and then show the word "months" after.
Ie. user can type 3 months or 13 months. I can't seem to do that. Here's as close as I could come, but if the user types just a single digit, it won't append "months" to it. I am using this in conjunction with an HTML5 placeholder plugin.
$("#months").mask("9?9 months",{placeholder:" "});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在这里找到您想要的内容:Jquery mask 插件
例子:
You'll find what your looking for here : Jquery mask plugin
Example: