?x <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn./jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("h1,h2,p").toggleClass("blue"); }); }); </script> <style type="text/css"> .blue { color:blue; } </style> </head> <body> ? <h1 class="blue">標(biāo)題 1</h1> <h2 class="blue">標(biāo)題 2</h2> <p class="blue">這是一個(gè)段落。</p> <p>這是另外一個(gè)段落,。</p> <br> <button>切換 class</button> </body> </html> |
|
來(lái)自: star_dusting > 《待分類》