javascript regexp on keyup



我正在尝试制作一个脚本,该脚本将替换keyup事件输入中所有不需要的字符(来自regexp)。我什么都试过了,但什么都不管用…

我的代码:

$('#form_accomodation_cell').on('keyup', 'input[name="accomodation_cell[]"]', function() {
    var value = $(this).val();
    var regex_cell = /^[0-9 +]+$/g;
    if (!isNumeric(value, regex_cell))
    {
        var new_value = value.replace(regex_cell, '');
        alert(new_value);
    }
    function isNumeric(elem, regex_cell) {
        if(elem.match(regex_cell)){
            return true;
        }else{
            return false;
        }
    }
});

试试这个:

$('#form_accomodation_cell').on("keyup", function () {
    var value = $(this).val();
    var regex_cell = /[^[0-9 +]]*/gi;
    var new_value = value.replace(regex_cell, '');
    alert(new_value);
});

请参阅此处的操作。

我认为您应该尝试捕捉事件并最终以这种方式编写!

function validateNumber(evt) {
var theEvent = evt || window.event;
var key = theEvent.keyCode || theEvent.which;
key = String.fromCharCode( key );
var regex = /^[0-9 +]+$/g;
    if( !regex.test(key) ) {
   theEvent.returnValue = false;
   if(theEvent.preventDefault) theEvent.preventDefault();
}
}

相关内容

  • 没有找到相关文章

最新更新