【锋利的JQuery-学习笔记】输入框提示语-隐藏/显示
时间:2014-05-01 20:01:58
收藏:0
阅读:444
html
<div class="search"> <input type="text" id="inputSearch" class="" value="请输入商品名称"/> </div>
css:
#inputSearch { border: 1px solid #BABEBF; color: #999999; font-size: 14px; height: 17px; padding: 3px 6px 5px 6px; width: 200px; }
#inputSearch.focus{
border: 1px solid red;
}
js:
$(function () { $("#inputSearch").focus(function () { $(this).addClass("focus"); if ($(this).val() == this.defaultValue) { $(this).val(""); } }).blur(function () { $(this).removeClass("focus"); if ($(this).val() == "") { $(this).val(this.defaultValue); } }).keyup(function (e) { if (e.which == 13) { alert("提交后台搜索"); } }); });
评论(0)