jQuery输入模糊

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery输入模糊相关的知识,希望对你有一定的参考价值。

  1. $.fn.focus_blur = function() {
  2. $(this).css({color:'#999999'});
  3. return this.focus(function() {
  4. if( this.value == this.defaultValue ) {
  5. this.value = "";
  6. }
  7. $(this).css({color:'#333333'});
  8. }).blur(function() {
  9. if( !this.value.length ) {
  10. this.value = this.defaultValue;
  11. $(this).css({color:'#999999'});
  12. }
  13. });
  14. };
  15. $(".input_textbox").focus_blur();

以上是关于jQuery输入模糊的主要内容,如果未能解决你的问题,请参考以下文章

jQuery输入模糊

jQuery-添加/聚焦/模糊输入值

jQuery专注于数组模糊

使用jQuery对输入进行聚焦和模糊

JavaScript 使用jQuery设置或清除加载,聚焦和模糊的输入值

jQuery 模糊事件在 Chrome 中触发了两次