Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要对具有以下条件的文本进行验证。
我是.NetJavaScript 新手。有人可以建议怎么做吗?
.Net
在“keyup blur”事件处理程序中使用以下代码
$(function() { $('input.alpha[$id=tb1]'.bind('keyup blur', function() { if (this.value.search(/^[a-zA-Z]*$/) === -1) { alert("Only valid characters present"); } }); });
如果您不想让正则表达式出现空匹配,请使用 + 而不是 *。