2012年7月19日 星期四

[ASP]搜尋文字輸入框(TEXT)預設文字

游標移至輸入框後清除輸入框文字,
輸入框內若無內容則置入預設文字「請輸入查詢關鍵字」。

<input type="text" name="sch1" value="請輸入查詢關鍵字" onfocus="this.value='';" onblur="if (this.value == '') { this.value = '請輸入查詢關鍵字'; this.style.color = '#999999'; } else { this.style.color = '#000000'; };" style="color:#999999;">

沒有留言:

張貼留言