テキストエリアの高さを変更する


動作ブラウザ 【 IE:4.0   NN:6.0
Internet Explorer Netscape Navigator Firefox Opera iCab Safari
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.0x 4.x 6.0 7.0 8.0 1.0 7.x 8.x 2.x 1.x 2.x
Windows × - × × × × -
Macintosh × ? ? - × × × × - ×
UNIX - - - - - × × × × - -

ポイント document.myFORM.myTEXT.style.height = hSize;
説  明 スタイルシートに対応しているブラウザではテキストエリアの高さはstyleのheightプロパティに値を設定することで指定することができます。
サンプル <html> <head> <title>テキストエリアの高さを変更する</title> <script type="text/javascript"><!-- function setTA(hSize) { document.myFORM.myTEXT.style.height = hSize; } // --></script> </head> <body> <form name="myFORM"> <textarea rows="9" cols="20" name="myTEXT"></textarea><br> <input type="button" value="120pxにする" onClick="setTA(120)"><br> <input type="button" value="240pxにする" onClick="setTA(240)"><br> <input type="button" value="320pxにする" onClick="setTA(320)"><br> </form> </body> </html>
補足説明 上記サンプルをNetscape 4で実行するとエラーになります。MacOS X + iCabではテキストエリアの高さは変更されますが、余白のみが調整され実際のテキストエリアのサイズは変更されません。Opera 6では動作しません。

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!

写真素材 PIXTA