Javascript Force Numeric仅适用于Samsung S4

时间:2014-05-21 01:46:56

标签: javascript jquery

我有javascript阻止用户输入字母。

以下代码适用于iPhone 4/5和三星Galaxy S3但不适用于S4。

有人知道S4的修复程序吗?

$("#postcode").keydown(function (e) 
{
    // Allow: backspace, delete, tab, escape, enter and .
    if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 ||
      // Allow: Ctrl+A
      (e.keyCode == 65 && e.ctrlKey === true) || 

      // Allow: home, end, left, right
      (e.keyCode >= 35 && e.keyCode <= 39)) 
    {
        // let it happen, don't do anything
        return;
    }
    // Ensure that it is a number and stop the keypress
    if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) 
    {
        e.preventDefault();
    }
});

1 个答案:

答案 0 :(得分:0)

我们在三星Galaxy S6中也遇到了同样的问题。因此,对于我而言,代码可以是避免使用keyCode而不是输入文本字段的值的解决方案。您可以在keydown事件处理程序方法中使用这部分代码。

var isValid = /^[0-9]*$/.test(value);

if (!isValid){
    $(element).val(value.substring(0, value.length - 1));
}

检查用户是否输入了数字以外的其他内容,只是将其删除。