テキストボックスの文字を小文字や大文字に変える

サンプルソース

<input type="button" value="大文字" onclick="document.all.txt1.value=document.all.txt1.value.toUpperCase()">
<input type="button" value="小文字" onclick="document.all.txt1.value=document.all.txt1.value.toLowerCase()">
<input id="txt1" type="text" value="abcde">


サンプル

関連する内容






Copyright (C) JavaScript@Workshop All rights reserved.