本文介绍了如何在特定形式的字段中限制特殊字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有类似html的东西,并非完全像这样,只是为了给您一个主意.
I have html which is something like, not exactly like this, but just to give you an idea.
<input type="text" disabled="disabled" name="ip" />
<input type="text" name="name" />
<input type="text" name="email" />
<input type="submit" value="send" />
如何限制特殊字符只能在名称字段中使用?我只想在名称字段中输入字母数字.
How to restrict special characters from using in only name field? I want only alphanumeric in name field.
你能帮我做到这一点吗?
Can you please help me do this?
预先感谢
推荐答案
尝试一下:
var alphanumers = /^[a-zA-Z0-9]+$/;
if(!alphanumers.test($("#firstname").val())){
alert("Nickname can have only alphabets and numbers.");
}
演示
或
DEMO
or
$(document).ready(function () {
var charReg = /^\s*[a-zA-Z0-9,\s]+\s*$/;
$('.keyup-char').keyup(function () {
$('span.error-keyup-1').hide();
var inputVal = $(this).val();
if (!charReg.test(inputVal)) {
$(this).parent().find(".warning").show();
} else {
$(this).parent().find(".warning").hide();
}
});
});
这篇关于如何在特定形式的字段中限制特殊字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!