jquery 得到焦点与失去焦点插件

jQuery.fn.extend({     FocusBlur: function() {         $(this).live('focus',function(){             if(!$(this).data('old'))                 $(this).data('old', $(this).val());                          if($(this).val()==$(this).data('old'))                 $(this).val('');         });         $(this).live('blur',function(){             if($(this).val()=='')                 $(this).val($(this).data('old'));         });              } });
相关文章
相关标签/搜索