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'));         });              } });
相關文章
相關標籤/搜索