作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 google-libphonenumber的 AsYouTypeFormatter
在 Web 表单上带有一个简单的输入元素。我将用户输入的每个键传递给 inputDigit
方法。我遇到的问题是,当用户按退格键时,google-libphonenumber 不会删除最后一位数字,而只是将 Backspace
附加到电话号码。我是否使用 AsYouTypeFormatter 不当?它不能处理退格键吗?如果是这样,并且我怀疑是这种情况,我应该如何处理用户按退格键的情况?
以下是示例项目的链接:https://stackblitz.com/edit/libphonenumber
这是代码:
import { AsYouTypeFormatter } from 'google-libphonenumber';
const appDiv: HTMLElement = document.getElementById('app');
appDiv.innerHTML = `
<h1>Libphonenumber Playground</h1>
<input id="input" type="text">
`;
this.formatter = new AsYouTypeFormatter('us');
const input = document.getElementById('input') as HTMLInputElement;
input.addEventListener('keyup', (event: KeyboardEvent) => {
console.log(this.formatter.inputDigit(event.key));
});
最佳答案
"isNumber": function(evt) {
evt = (evt) ? evt : window.event;
var charCode = (evt.which) ? evt.which : evt.keyCode;
if ((charCode > 31 && (charCode < 48 || charCode > 57) || charCode === 46 || charCode === 13)) {
//do not allow non numeric characters
evt.preventDefault();
}else{
//ok: numeric character
//handle phone number masking.
this.phoneNumberForm =this.formatter.inputDigit(evt.key);
}
我还没有找到任何可以将格式化程序索引移回的方法。(这并不意味着他们不在那里)我所做的是防止退格键按下事件。与任何其他非数字字符一起。这是我使用的函数:
关于javascript - 如何使用 libphonenumber AsYouTypeFormatter 处理退格键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52636888/
我是一名优秀的程序员,十分优秀!