允许-1的javascript验证和文本框中的所有正数

时间:2012-05-08 12:28:45

标签: javascript

我正在尝试验证文本框以允许包含-1的所有正数。

我尝试了这个,这将只允许正数

  function allownumbers(e, txtBox) {
        var key;

        key = (e.keyCode) ? e.keyCode : e.charCode;
        if (e.charCode == 0) {
            return true;
        }
        if ((key < 48 || key > 57) && (key != 46) && (key != 44)) {               
            return false;                
        }
        if (key == 46) {
            if ((txtBox.value).indexOf('.') != -1) {
                return false;
            }
        }
        if (key == 44) {
            if ((txtBox.value).indexOf(',') != -1) {
                return false;
            }
        }
        return true;
    }

function allownumbers(e, txtBox) { var key; key = (e.keyCode) ? e.keyCode : e.charCode; if (e.charCode == 0) { return true; } if ((key < 48 || key > 57) && (key != 46) && (key != 44)) { return false; } if (key == 46) { if ((txtBox.value).indexOf('.') != -1) { return false; } } if (key == 44) { if ((txtBox.value).indexOf(',') != -1) { return false; } } return true; }

但是如何允许所有正数的-1(仅) 提前致谢

1 个答案:

答案 0 :(得分:1)

为什么不验证和消毒输入,而不是阻止击键?也许是这样的:

function allownumbers(e, txtBox) {
    var val = parseInt(txtBox.value);
    if(!val || val < -1) {
        val = 0; // invalid value, reset to zero
    }

    txtBox.value = val;
}