在焦点上清除输入框中的默认文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在焦点上清除输入框中的默认文本相关的知识,希望对你有一定的参考价值。

  1. $('input').each(function() {
  2.  
  3. var default_value = this.value;
  4.  
  5. $(this).focus(function() {
  6. if(this.value == default_value) {
  7. this.value = '';}
  8. });
  9.  
  10. $(this).blur(function() {
  11. if(this.value == '') {
  12. this.value = default_value;}
  13. });
  14. });

以上是关于在焦点上清除输入框中的默认文本的主要内容,如果未能解决你的问题,请参考以下文章