2008-03-12から1日間の記事一覧

フォーカスされたテキストボックスの背景色を変更する

メモ書き。 フォーカスされたテキストボックスの背景色を変更するには次のようにする。 window.onload = function(){ function input_focused() { this.style.backgroundColor="#DFF"; } function input_blured() { this.style.backgroundColor=""; } len = …