App下載
首頁javascriptclassjQuery Style - 如何向選定的標(biāo)簽添加兩個(gè)類

jQuery Style - 如何向選定的標(biāo)簽添加兩個(gè)類

我們想知道如何向選定的標(biāo)簽添加兩個(gè)類。


<html>
  <head>
    <script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
    <script type="text/javascript">
        $(document).ready(function(){
              $("p:last").addClass("one two");
        });
    </script>
    <style>
       .one { color:red; }
       .two { border:1px solid blue; }
    </style>
  </head>
  <body>
      <p>A</p>
      <p>B</p>
      <p>C</p>
  </body>
</html>