(function($){$.fn.tableUI=function(options){ var defaults={ evenRowclass:"evenRow", oddrowclass:"oddRow", activeRowClass:"activeRow" } var options=$.extend(defaults,options); this.each(function(){ //each历编 thistable=$(this); thistable.find("tr:even").addClass(options.evenRowclass); thistable.find("tr:odd").addClass(options.oddrowclass); }); //鼠标经过,离开的tr的变化 thistable.find("tr").bind("mouseenter mouseleave",function(e){ $(this).toggleClass(options.activeRow); }); } })(jQuery);
上是tableUI.js
以下是html页面
无标题文档
1111111111111 | 1111111111111 |
1111111111111 | 1111111111111 |
1111111111111 | 1111111111111 |
1111111111111 | 1111111111111 |