我需要在textbox字段中提供帮助,仅限于字符 我做了这个功能
var name = $('.fl-nameinput').val();
rePattern = /^[a-zA-Z ]+$/;
if (rePattern.test(name.value)) {
var d = "Your name can only contain alphabets ";
htm += "<div class='em-full wp-error-msg em-m'>" + d + "</div>" ('.wp-error-msg').css('display', 'block');
}
这个函数类型数字显示错误信息就可以了。 但键入full charcter,时间也会显示消息。 请帮助我。
答案 0 :(得分:0)
您已为value
设置input
,因此无需再次value
分配if condition
。
Repalce
if(rePattern.test(name.value) )
。通过强>
if(rePattern.test(name) )