搜索文本框,位置跳动,焦点离开搜索文本框焦点离开时设置文本,位置跳动问题
//搜索文本框 $("#txtSearch").focus(function () { if ($(this).val() == "请输入搜索关键字") { $(this).val(""); $(this).css("color", "black"); } }).blur(function () { if ($(this).val() == "") { $(this).css("color", "gray").val("请输入搜索关键字"); } });
在css中加入
#txtSearch { width:480px; height:20px; vertical-align:middle; }
搜索文本框,位置跳动,焦点离开
|