easyui input 기본값 설정

4054 단어 easyui
/* input  */

$(function () {

    //  

    $(".formTextBoxes input").each(function () {

        $(this).setDefauleValue();

    });

    //  

    $(".textkey").setDefauleValue();

})



// input,textarea  . $.fn.seDefauleValue = function(){

$.fn.setDefauleValue = function () {

    var defauleValue = $(this).val();

    $(this).val(defauleValue).css("color", "#999");



    return this.each(function () {

        $(this).focus(function () {

            if ($(this).val() == defauleValue) {

                $(this).val("").css("color", "#000"); //  

            }

        }).blur(function () {

            if ($(this).val() == "") {

                $(this).val(defauleValue).css("color", "#999"); //  

            }

        });

    });

}

Html:
 <div class="formBoxes formTextBoxes clearfix">

            <input id="txtSearch" type="text" value='@ViewBag.SearchText'  class="searchMainBtn easyui-validatebox" />

            <div id="btnSearch" class="btnGo" >@ViewBag.Search</div>

        </div>

좋은 웹페이지 즐겨찾기