首页javascriptclassjQuery Style - 如何向选定的标签添加两个类

jQuery Style - 如何向选定的标签添加两个类

我们想知道如何向选定的标签添加两个类。


<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>