您好我有一个没有操作按钮的文本框。在键入自身时,它必须验证它是否是从A到z,如果没有,它会在文本框旁边抛出错误。我怎样才能做到这一点?
答案 0 :(得分:2)
你走了! 我已经简单了,所以人们可以理解它的基本逻辑:)
这是我的jsfiddle ..
http://jsfiddle.net/joedf/mhVqr/2/
HTML
<input type='text' id='textbox'>
<input type="button" class="button-disabled" id="change" disabled="disabled" value="click">
<div id="throwEx"/>
JS
$("#throwEx").hide();
$("#textbox").keyup(checkForm).focus(checkForm);
function checkForm() {
var needle = /^([a-zA-Z0-9]+)$/;
var inputVal = $("#textbox").val();
if (inputVal == '') {
$("#change").addClass("button-disabled").removeClass("button");
$("#change").attr("disabled", "disabled");
$("#throwEx").hide();
}
else if (!needle.test(inputVal)) {
$("#change").addClass("button-disabled").removeClass("button");
$("#change").attr("disabled", "disabled");
$("#throwEx").text("Error: Only Alphanumeric characters are allowed...");
$("#throwEx").show();
} else {
$("#change").removeClass("button-disabled").addClass("button");
$("#change").removeAttr("disabled");
$("#throwEx").hide();
}
}
答案 1 :(得分:1)
这可能对您有用:
<input type="text" class="abc">
也许你已经调整了正则表达式,还没有真正测试过它:
$(document).ready(function() {
$('.abc').bind('keyup', function() {
regex = /^[A-z0-9]+$/;
if(!regex.test($(this).val())) {
$(this).next('.error').remove();
$(this).after('<div class="error">Wrong</div>');
} else {
$(this).next('.error').remove();
}
});
});
答案 2 :(得分:1)
我是从stackoverflow here 得到的,并且只修改了输入字符A到z。
<input type="text"/>
$(document).ready(function () {
$('input').keyup(function() {
var $th = $(this);
$th.val( $th.val().replace(/[^a-z]/g, function(str) { alert('You typed " ' + str + ' ".\n\nPlease use only letters and numbers.'); return ''; } ) );
});
});
链接到小提琴here
答案 3 :(得分:1)
使用keyup函数控制TextBox是一个坏主意,因为用户可以在TextBox中复制/粘贴文本或选择浏览器的自动填充字段之一等。我的方法:
HTML:
<input type="text" id="TextBox1" name="TexBox1" value="" />
<span id='error' name='error'></span>
JS:
function monitor() {
if ($('#TextBox1').val().length > 0) {
var reg = /^([a-zA-Z]+)$/;
if (!reg.test($('#TextBox1').val())) {
$('#error').html("Only letters are allowed!");
} else {
$('#error').html("");
}
} else {
$('#error').html("");
}
}
var timer = '';
$('#TextBox1').on('focus', function () {
timer = setInterval(monitor, 100);
}).on('blur', function () {
clearInterval(timer);
});