jquery搜索設置默認值

$('.qt_ser_text').bind({ 
			focus:function(){ 
				if (this.value == this.defaultValue){ 
					this.value=""; 
				} 
				$(".qt_ser_text").css("color","#333");
			}, 
			blur:function(){ 
				if (this.value == ""){ 
					this.value = this.defaultValue; 
				}
				$(".qt_ser_text").css("color","");
			} 
		}); 
<input type="text" value="搜索您感興趣的保留域名" class="qt_ser_text" name="domainName"/>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章