<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>123</title> <style type="text/css"> body { margin: 0px; padding: 0px; } .div1 { background-color: #eee; width: 100px; height: 100px; } .div1:hover { background-color: #fff; } .two { background-color: #777; } .two:hover { background-color: #999; } </style> </head> <body> <div class="div1"> </div> <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script> <script type="text/javascript"> $('.div1').click(function() { $(this).toggleClass('two'); }); </script> </body> </html>
document.querySelector('style').sheet.rules