一键清除默认输入文本值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一键清除默认输入文本值相关的知识,希望对你有一定的参考价值。
(function($){ $.fn.clearDefault = function(){ return this.each(function(){ var default_value = $(this).val(); $(this).focus(function(){ if ($(this).val() == default_value) $(this).val(""); }); $(this).blur(function(){ if ($(this).val() == "") $(this).val(default_value); }); }); }; })(jQuery); // How to use it: $('input').clearDefault();
以上是关于一键清除默认输入文本值的主要内容,如果未能解决你的问题,请参考以下文章