测试字符串是否为Integer的函数是什么函数:
jQuery.isNumeric()
我想测试一个输入html元素:
<input id='distance' type='text' />
提前谢谢
答案 0 :(得分:8)
if(Math.floor($('#distance').val()) == $('#distance').val() && $.isNumeric($('#distance').val()))
{
alert('yes its an int!');
}
答案 1 :(得分:-1)
我用这个
function IsInteger(n){
return Number(n) === n && n % 1 === 0;
}
答案 2 :(得分:-4)
if($.type($(#distance).val())==="number")