MOOTOOLS JS-清除输入字段onClick onFocus on click focus active

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MOOTOOLS JS-清除输入字段onClick onFocus on click focus active相关的知识,希望对你有一定的参考价值。

  1. // 201004291250 - Mootools clear input on focus, return default value if no data entered
  2. // FROM: Clear text field with mootools on focus. - MooTools Users | Google Groups http://bit.ly/cHPev3
  3.  
  4. /*
  5. I've got this snippet that will clear the value on focus and if the value of
  6. the focus is '' it will put the default value again in the input. You will
  7. need the default value to be on an attribute of the input, like alt or
  8. anyother (if you don't bother about validation).
  9.  
  10. Fábio Miranda Costa
  11. Engenheiro de Computação
  12. http://meiocodigo.com
  13.  
  14. */
  15.  
  16. // FUNCTION:
  17.  
  18. Element.implement({
  19. clearFocusResetBlur: function(attr){
  20. var valueString = this.get(attr);
  21. this.addEvents({
  22. 'focus': function(){
  23. if( this.get('value') == valueString ) this.set('value','');
  24. },
  25. 'blur': function(){
  26. if( this.get('value') == "" ) this.set('value',valueString);
  27. }
  28. });
  29. }
  30. });
  31.  
  32.  
  33. // Usage
  34. // html:
  35. // <input id="input_id" value="some value" alt="default value" />
  36.  
  37.  
  38. // JS:
  39. $('.jform form .cleardefault').set('alt','value').clearFocusResetBlur('alt');

以上是关于MOOTOOLS JS-清除输入字段onClick onFocus on click focus active的主要内容,如果未能解决你的问题,请参考以下文章

jquery屏蔽输入插件不清除字段?

JS-onclick函数将文本字符符号插入到光标处的文本输入字段或文本区域

JavaScript OnClick只能工作一次[复制]

HTML 清除输入onclick / onfocus

用ant-design在react js中提交后清除表单输入字段值

javascript datepicker检测输入字段中的更改值