文本框焦點離開時會出現文本位置跳動問題,想必大家都有遇到過吧,其實解決很簡單,只要固定寬高便可解決,遇到類似情況的朋友不妨參考下
搜索文本框焦點離開時設置文本,位置跳動問題
復制代碼
代碼如下:
//搜索文本框
$("#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;
}