【锋利的JQuery-学习笔记】输入框提示语-隐藏/显示

2020-11-22 18:31

阅读:732

标签:style   blog   class   code   java   ext   javascript   width   color   html   http   

html

                div class="search">
                    input type="text" id="inputSearch" class="" value="请输入商品名称"/>
                div>

 

css:

mamicode.com,搜素材
#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;
}

mamicode.com,搜素材

 

js:

mamicode.com,搜素材
$(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("提交后台搜索");
        }
    });
});
mamicode.com,搜素材

 

 

 

 

【锋利的JQuery-学习笔记】输入框提示语-隐藏/显示,搜素材,soscw.com

【锋利的JQuery-学习笔记】输入框提示语-隐藏/显示

标签:style   blog   class   code   java   ext   javascript   width   color   html   http   

原文地址:http://www.cnblogs.com/easy5weikai/p/3702735.html


评论


亲,登录后才可以留言!