toUpperCase

種類メソッド
書式 文字列.toUpperCase()
解説
英小文字を英大文字に変換します。
サンプルコード
function sampleCode()
{
str = "Amiga";
result = str.toUpperCase();
txtField.data = result;
}
sampleCode();
実際のスクリプトをダウンロード