搜索文本框焦點離開時設置文本,位置跳動問題
復制代碼代碼如下:
//搜索文本框
$("#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;
}