如何使文本框字段仅接受十进制值
答案 0 :(得分:2)
答案 1 :(得分:0)
试试这个:
function is_int(test)
typeof (a = (typeof test == "function" ? test() : test)) == "number" ? !(a % 1) : false;
returns:
is_int(8) // true
is_int("8") // false
function test() {
return 12
}
is_int(test()) // true