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.
我有一个输入字段,用户必须在其中添加他的地址,但我需要得到至少一个数字(门牌号)。我应该如何验证该字段?提前感谢您的帮助。
回答这个问题,看看一个字符串是否至少包含一个数字:
if ( string.match(/\d/) ) { // do something }
小提琴