2009年10月27日星期二

jQuery 表格效果代码

[js]
$(function() {
$('.pickme tbody tr:odd').addClass('odd');
$('.pickme tbody tr').hover(
function() { $(this).addClass('highlight'); },
function() { $(this).removeClass('highlight'); }
).click( function() {
$('.selected').removeClass('selected');
$(this).addClass('selected').find('input').attr('checked','checked');
});
});
[/js]

没有评论:

发表评论