jQuery数字输入掩码

时间:2010-08-27 14:54:56

标签: jquery

我正在尝试做一个简单的整数数字输入掩码,而不必包含像Digital Bush's masked input这样的整个插件。

这是我从另一个stackoverflow问题“重新调整”的代码:

$('input[name=Qty]').keyup(function() {
    var theEvent = evt || window.event;
    var key = theEvent.keyCode || theEvent.which;
    key = String.fromCharCode( key );
    var regex = '[0-9]'; /* Use |\. to include a decimal */
    if( !regex.test(key) ) {
     theEvent.returnValue = false;
     theEvent.preventDefault();
    }
});

错误发生在第一行,它不知道什么是evt 我想我需要使用$(this)。

2 个答案:

答案 0 :(得分:4)

在函数参数中缺少evt

$('input[name=Qty]').keyup(function(evt) {
                                     ^

答案 1 :(得分:0)

我发现这是另一种选择:

$('input[name=Qty]').bind('keyup blur',function(){ 
    var myValue = $(this).val();
    $(this).val( myValue.replace(/[^0-9]/g,'') );
});