作者:yvli心语 | 来源:互联网 | 2023-10-11 19:37
篇首语:本文由编程笔记#小编为大家整理,主要介绍了文本输入默认值恢复相关的知识,希望对你有一定的参考价值。
This snippet could be used when a text input has a default value. Thus, when user clicks on the input to write, the default value disappears and allows the user to write, but if the user does not type anything, the default value will appears again. It also adds a class to the input when the user is typing on it and is removed when the input loses focus.
This snippet must be inside the ready event.
For the html markup, the only thing to take care is that you must use the same class in all the inputs that you want to give this functionality. In the example I use "input-text-js", but you can use whatever you want.
You can see this snippet working on www.retto.com
var textBoxs = $('.input-text-js');
textBoxs.each(function() {
var theValue = $(this).attr('value');
$(this).focus(function (){
if($(this).attr('value') == theValue){
$(this).attr('value','').addClass('writingIt');
}
}).blur(function () {
if($(this).attr('value') == ''){
$(this).attr('value',theValue).removeClass('writingIt');
}
});
});