生日输入字段 - 在特定数量的字符后自动添加点

发布于 2024-10-15 12:12:30 字数 300 浏览 2 评论 0 原文

嘿伙计们, 不寻常的问题:我有一个输入字段#birthday,应该接受这样的欧洲日期格式。 dd.MM.yyyy

我想知道在该字段中输入内容时是否可以自动应用点。

想象一下输入字段是聚焦的并且是空的。我开始输入数字,该字段自动生成一个点,再次生成两个数字和一个点。

我的目标是只输入数字而不需要添加点。

知道我如何用 jquery 或 javascript 实现这一点吗?

$('#birhtday').keypress(function() {
    // ?
})

Hey guys,
unusual question: I have a input field #birthday that should accept european date format like this. dd.MM.yyyy

I wonder if it is possible to auto apply dots when typed into this field.

Imagine the inputfield is focused and empty. I start typing to numbers and the field autogenerates a dot, again two numbers and a dot is generated.

My aim is to type only numbers without needing to add the dots.

any idea how i could achieve that with jquery or javascript in general?

$('#birhtday').keypress(function() {
    // ?
})

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

神经暖 2024-10-22 12:12:30

为什么不使用现有的 jQuery 插件?

  • 屏蔽输入
  • meioMask - 我发现它更好,因为它不使用那些下划线(但在 TAB 填充表单时似乎有一些错误)

Why not use existing jQuery plugins?

  • Masked input
  • meioMask - I find it nicer because it doesn't use those underscores (but it seems to have some bugs when TABing through filled form)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文