[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]
没有评论:
发表评论