$(".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);
}
});
2013年12月13日 星期五
jQuery實做輸入時清除input文字
以下程式碼可以完成 點擊input對話框時清除上面的文字,若沒輸入則還原
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言