//悬浮变色事件 |
$( '.pageBtn' ).mouseover( function (){ |
$( this ).css({ |
'backgroundColor' : '#df0001' , |
'color' : '#fff' |
}); |
}); |
$( '.pageBtn' ).mouseout( function (){ |
$( this ).css({ |
'backgroundColor' : '#fff' , |
'color' : '#000' |
}); |
}); |