私はこの機能を持っています:
function validate(str1,str2,str3){
var alph=/^[A-Za-zÑñ]*$/;
if((str1.match(alph) || str2.match(alph) || str3.match(alph))){
return true;
}else{
return false;
}
}
入力テキストにアルファベットを入力すると、true が返されます。しかし、任意の数値を入力すると、true も返されます。
受け入れる必要があるのはアルファベット文字とスペースだけです。
誰でも私を助けることができますか?