6

我需要一个 jquery 或 js 函数来只允许输入字母和空格。提前致谢。

页:

<p:inputText onkeypress="onlyLetter(this)">

功能:

function onlyLetter(input){
    $(input).keypress(function(ev) {
   var keyCode = window.event ? ev.keyCode : ev.which;
  //  code

    });
}
4

9 回答 9

12

以下代码仅允许 az、AZ 和空格。

HTML

<input id="inputTextBox" type="text" />

jQuery

$(document).on('keypress', '#inputTextBox', function (event) {
    var regex = new RegExp("^[a-zA-Z ]+$");
    var key = String.fromCharCode(!event.charCode ? event.which : event.charCode);
    if (!regex.test(key)) {
        event.preventDefault();
        return false;
    }
});
于 2015-11-05T06:57:24.293 回答
11

注意:KeyboardEvent.which自 2020 年 1 月 1 日起已弃用

只需使用要禁用或阻止工作的键/数字的 ascii 代码(十进制值)。ASCII 表

HTML:

<input id="inputTextBox" type="text" />

jQuery :

$(document).ready(function(){
    $("#inputTextBox").keydown(function(event){
        var inputValue = event.which;
        // allow letters and whitespaces only.
        if(!(inputValue >= 65 && inputValue <= 120) && (inputValue != 32 && inputValue != 0)) { 
            event.preventDefault(); 
        }
    });
});

jsFiddle 演示

于 2013-11-08T01:02:19.203 回答
8

首先,我在 jQuery 方面几乎没有经验,将提供一个 vanilla javascript 示例。这里是:

document.getElementById('inputid').onkeypress=function(e){
    if(!(/[a-z ]/i.test(String.fromCharCode(e.keyCode))) {
        e.preventDefault();
        return false;
    }
}
于 2013-11-08T00:50:44.387 回答
3

稍微调整一下 Ashad Shanto 的回答。请注意,如果您使用脚本,则不能输入 y 和 z。您必须将 inputValue 从 120 更改为 123。这是 ASCII 表参考:http ://ee.hawaii.edu/~tep/EE160/Book/chap4/subsection2.1.1.1.html使用下面的脚本键入在所有的字母,空格和退格。

<script>
    $(document).ready(function(){
        $("#inputTextBox").keypress(function(event){
            var inputValue = event.which;
            // allow letters and whitespaces only.
            if(!(inputValue >= 65 && inputValue <= 123) && (inputValue != 32 && inputValue != 0)) { 
                event.preventDefault(); 
            }
            console.log(inputValue);
        });
    });

</script>
于 2016-12-19T23:08:00.867 回答
1

您可以使用我从这篇文章中获取的这个简单方法

<input type="text" name="fullName" onkeypress="return (event.charCode > 64 && 
event.charCode < 91) || (event.charCode > 96 && event.charCode < 123)" 
placeholder="Full Name">
于 2019-04-22T17:14:50.500 回答
1

jQuery

var letters = /^[A-Za-z ]+$/;
var city_input="";
$(document).ready(function(){
    $("#city_name").on("input", function(){
        var city_value=$(this).val();
        if(city_value==="")
        {
            city_input=city_value;
        }
        else if(city_value.match(letters)===null){
            $(this).val(city_input);
        }
        else{
            city_input=city_value;
        }
    });
});
于 2020-08-25T12:57:47.687 回答
0

这是您可以轻松理解并且可以针对任何字符char异常进行修改的代码。

我包括例外情况BACKSPACE

同样,您可以通过在语句中包含键码来给出异常。

var c= ((e.which>=65 && e.which<91) || (e.which==8 /**Here 8 if for the Backspace**/) || (e.which=="your key code"))

https://gist.github.com/SathishSaminathan/e3c509243ead20fcae26c87fdd6f78fd

于 2017-07-14T09:53:49.323 回答
0

<!DOCTYPE html>
<html>
<head>
<script
  src="https://code.jquery.com/jquery-3.4.1.js"></script>
</head>
<body>
<br/>
Enter Only Alphabate: <input id="txtName" name="lname">
 
 <script>
 $('#txtName').keypress(function (e) {
        var regex = new RegExp("^[a-zA-Z \s]+$");
        var str = String.fromCharCode(!e.charCode ? e.which : e.charCode);
        if (regex.test(str)) {
            return true;
        }
        else
        {
        e.preventDefault();
        alert('Please Enter Alphabate');
        return false;
        }
    });
 </script>
</body>
</html>

于 2019-07-18T07:45:25.217 回答
-2
function ValidateAlpha(evt) { 
  var keyCode = (evt.which) ? evt.which : evt.keyCode if (
    (keyCode < 65 || keyCode > 90) && 
    (keyCode < 97 || keyCode > 123) && 
    keyCode != 32 && 
    keyCode != 39
  )
于 2017-06-21T07:35:26.967 回答