/* 氏名:テキスト */
TextBox TextBox1 {
X = 73;
Y = 153;
Width = 280;
Height = 19;
String Tag = "ここに氏名(愛称)を入力して下さい。";
Function OnLostFocus( e ) {
/* 空文字の判定 */
if(e.from.value == ""){
this.Value = this.Tag;
this.FgColor = $DGRAY;
}
}
Function OnGetFocus( e ) {
/* 空文字設定 */
if(e.from.value == this.Tag){
this.Value = "";
this.FgColor = $STD;
}
}
}
|