function inputCheck(obj){ if(!form.key.value.match("[a-z]+")){ alert('半角小文字のみ有効です。'); return false; }else{ return true; } }
戻る