toLowerCase

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