1.
("tbody>tr:odd",this).addClass(options.odd);
其实等同于
$(this).find("tbody>tr:odd").addClass(options.odd);