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