mandarīnpīle Posted March 23, 2013 Report Share Posted March 23, 2013 Ja normāli :hover stāvokļa izraisīšanai css failā rakstītu kaut ko šādu: #div{ background-color: white; } #div:hover{ background-color: black; } Tad kā pēc lapas ielādes es varu nomainīt to :hover stāvokli? Esmu mēģinājis šādi: $('#div:hover').css('background-color', 'red'); Bet tas nestrādā. Quote Link to comment Share on other sites More sharing options...
Sasa Posted March 23, 2013 Report Share Posted March 23, 2013 Pieliec divam vēl vienu klasi teiksim nosauc viņu par active kurā tad ir tas bacground-color red uzsetots. Quote Link to comment Share on other sites More sharing options...
hipokito Posted April 9, 2013 Report Share Posted April 9, 2013 $(document).ready(function() { $(function() { $('#div').hover( function(){ $(this).css('background-color', 'black'); }, function(){ $(this).css('background-color', 'white'); }); }); }); Quote Link to comment Share on other sites More sharing options...
daGrevis Posted April 10, 2013 Report Share Posted April 10, 2013 Cik nu pats meklēju, nevar to normālā veidā nekādīgi izdarīt (t.i., selektot pseido-klases ar jQuery). Atliek heki, kā jau ir minēts augstāk. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.