使用 jQuery 屏蔽和/或格式化?

发布于 2024-11-15 01:35:25 字数 286 浏览 1 评论 0原文

我正在使用标准的 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 技术交流群。

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

发布评论

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

评论(1

初相遇 2024-11-22 01:35:25

您可以在这里找到您想要的内容:Jquery mask 插件
例子:

'm': { //month

"validator": "0[1-9]|1[012]",

"cardinality": 2,

"prevalidator": [{ "validator": "[01]", "cardinality": 1}]

}


$("#month").inputmask("m",{"placeholder" : " "});

You'll find what your looking for here : Jquery mask plugin
Example:

'm': { //month

"validator": "0[1-9]|1[012]",

"cardinality": 2,

"prevalidator": [{ "validator": "[01]", "cardinality": 1}]

}


$("#month").inputmask("m",{"placeholder" : " "});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文