使用jQuery设置或清除加载聚焦和模糊时的输入值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery设置或清除加载聚焦和模糊时的输入值相关的知识,希望对你有一定的参考价值。
$("body input").each(function(){ if ($(this).val() == '') { $(this).val($(this).attr('title')); $(this).css('color','#ddd'); } else if ($(this).val() == $(this).attr('title')) { $(this).css('color','#ddd'); } else { $(this).css('color','#000'); } }); // Set the value to the title attribute if blank or clear the value on focus if set to the title attribute $("input").focus(function() { if ($(this).val() == $(this).attr('title')) { $(this).val(''); $(this).css("color","#000"); } }).blur(function() { if ($(this).val() == '') { $(this).val($(this).attr('title')); $(this).css("color","#ddd"); } else if ($(this).val() == $(this).attr('title')) { $(this).css("color","#ddd"); } });
以上是关于使用jQuery设置或清除加载聚焦和模糊时的输入值的主要内容,如果未能解决你的问题,请参考以下文章