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.
ユーザーが自分の住所を追加する必要がある入力フィールドがありますが、少なくとも 1 つの番号 (番地) を取得する必要があります。そのフィールドをどのように検証すればよいですか? 助けてくれてありがとう。
質問に答えて、文字列に少なくとも 1 つの数値が含まれているかどうかを確認します。
if ( string.match(/\d/) ) { // do something }
フィドル