2013年12月13日 星期五

jQuery實做輸入時清除input文字

以下程式碼可以完成 點擊input對話框時清除上面的文字,若沒輸入則還原


$(".box").focus(function(){ 
    $(this).addClass("focus"); 
    if($(this).val() ==this.defaultValue){   
        $(this).val("");            
    }  
}).blur(function(){ 
    $(this).removeClass("focus"); 
    if ($(this).val() == '') { 
        $(this).val(this.defaultValue); 
    } 
});