jquery 屏蔽输入
我正在尝试使用 jquery 的屏蔽输入:
如何在同一文本字段中输入不同的电话号码?
例如:第一个我要输入09-99999999,然后另一个是019-9999999...
如何在索引1 n 索引2 处设置符号“-”?
I'm trying to use a masked input with jquery:
How can I input the different phone number in the same textfield?
eg: the first one I want to input 09-99999999 and then another one is 019-9999999 ...
How can I set the symbol "-" at the index 1 n index 2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好以数字本身的形式接收输入,当文本框失去焦点时将其更改为您想要的格式。
查看演示
Better to receive the input as a number itself, and when the textbox loses focus change it to your desired format.
Check a demo