<input id="search" type="text" value="输入类别、编号、名称、主办、分类搜索"> $("#search").focus(function(){ $(this).css("color","black");//点击后黑色 $(this).addClass("focus"); if($(this).val() ==this.defaultValue){ $(this).val(""); } }).blur(function(){ $(this).removeClass("focus"); if ($(this).val() == ‘‘) { $(this).val(this.defaultValue); $(this).css("color","#C1C1C1");//失去焦点变原色 } });
时间: 2024-10-26 08:09:53