jQuery:输入文本默认值,单击清除值,如果键入的值被删除,则获取默认值bac
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery:输入文本默认值,单击清除值,如果键入的值被删除,则获取默认值bac相关的知识,希望对你有一定的参考价值。
Specifiy a default value to input text field. OnFocus, the default value clear and let you type a new value. If typed value is erased then the default value is set back.
$(document).ready(function() { swapValue = []; $("#qvtit-qvtit").each(function(i){ swapValue[i] = $(this).val(); $(this).focus(function(){ if ($(this).val() == swapValue[i]) { $(this).val(""); } $(this).addClass("focus"); }).blur(function(){ if ($.trim($(this).val()) == "") { $(this).val(swapValue[i]); $(this).removeClass("focus"); } }); }); }); </script>
以上是关于jQuery:输入文本默认值,单击清除值,如果键入的值被删除,则获取默认值bac的主要内容,如果未能解决你的问题,请参考以下文章