表单验证中缺少/未知错误

时间:2015-11-11 12:24:39

标签: javascript jquery

我在jfiddle中尝试了这个代码,它运行得很好,但是当我输入我的源代码并尝试使用我的localhost运行它时验证不起作用?我需要一个javascript链接才能使其正常工作吗?顺便说一下,验证只允许输入字母和空格。

这是代码

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


<script>
$(document).ready(function(){
    $("#inputTextBox").keypress(function(event){
        var inputValue = event.charCode;
        if((inputValue > 47 && inputValue < 58) && (inputValue != 32)){
            event.preventDefault();
        }
    });
});
</script>   

1 个答案:

答案 0 :(得分:1)

添加jquery cdn链接。

<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>