■ソースコード str = "SampleText"; txt = str.toUpperCase(); alert(txt) txt = str.toLowerCase(); alert(txt)
■ポイント toUpperCase()、toLowerCaseは以下の書式になります。
文字列.toUpperCase() 文字列.toLowerCase()
日本語を含む場合でも英文字のみが処理されます。