//カタカナのバリデーション function katakanaVld(v) { var flg=false; if(v.match(/^[ァ-ヶー]*$/)){ flg=true; } return flg; }