我正在嘗試爲搜索字段設置默認值。這個想法是,搜索字段具有值「搜索」,直到用戶點擊進入它,那麼它應該是空的。此外,只要它是「空白」(以「搜索」作爲值),它應該具有類「.blank」。設置搜索字段的默認值 - 請幫助!
我想這
<input autocomplete="off" class="" id="searchq" name="searchq" onblur="if (this.value == '') { this.value='Search'; jQuery(this).addClass('blank'); };" onfocus="if (this.value == 'Search') { this.value=''; jQuery(this).removeClass('blank'); };" type="text" value="" />
它的工作原理,到目前爲止,但是當我加載網站,本場僅僅是空的。我必須先在頁面內部單擊,然後在頁面上的某個位置單擊以使效果起作用。
我想這與onBlur有關。有任何想法嗎?
謝謝!