gpt4 book ai didi

javascript - 函数适用于文本输入但不适用于数字输入

转载 作者:行者123 更新时间:2023-11-28 01:25:10 24 4
gpt4 key购买 nike

我有一个 JavaScript 函数,可以在输入字母字符时清除文本输入。

input = document.getElementById('inf');
input.onkeyup = function() {
value = input.value;
truth = isNaN(value);
if (truth) {
input.value = '';
}

};
input {
border: 2px solid black;
margin-right: 10px;
}
<input type='text' id='inf' />Numbers Only
<br />Type a number in, and it stays. Put a letter in, and the input clears itself

问题是,当输入类型设置为数字时,这不起作用,如下例所示。

input=document.getElementById('inf');
input.onkeyup=function(){
value=input.value;
truth=isNaN(value);
if(truth){
input.value='';
}

};
input{
border:2px solid black;
}
<input type='number' id='inf'/>
<br />
As you can see, it doesnt work anymore.

我的问题有两个:

1) 为什么它适用于文本输入而不适用于数字输入?

2) 有简单的解决方法吗?我需要它作为数字输入,所以它必须保持不变。

请仅使用 Javascript 回答。没有 jQuery。

最佳答案

数字输入不允许非数字数据,因此这将始终为 false:

truth= isNaN(value);

相反,您可以检查按下的键是数字还是小数:

input=document.getElementById('inf');
input.onkeyup=function(e) {
if(!/[\d\.]/.test(String.fromCharCode(e.which))) {
input.value='';
}
};
<input type='number' id='inf'/>

关于javascript - 函数适用于文本输入但不适用于数字输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32429358/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com