0

我没有得到给定代码的彩色输出。

<html>
<head>
<title>the title</title>
   <script type="text/javascript" 
   src="/jquery/jquery-1.3.2.min.js"></script>

   <script type="text/javascript" language="javascript">

   $(document).ready(function() {
      $("p").find("span").addClass("selected");
   });

   </script>
   <style>
      .selected { color:red; }
  </style>
</head>
<body>

   <p>This is 1st paragraph and <span>THIS IS RED</span></p>
   <p>This is 2nd paragraph and <span>THIS IS ALSO RED</span></p>
</body>
</html>

有什么我想念的吗?谢谢,

4

2 回答 2

0

您是否在控制台日志中得到任何信息?代码很好看它在这里工作,确保你的 Jquery src 是正确的

$("p").find("span").addClass("selected");​

JS小提琴

于 2012-12-14T11:32:25.290 回答
0

使用这个:http: //jsfiddle.net/gaHhv/1/

 <script type="text/javascript" src="http://code.jquery.com/jquery-1.3.2.js"></script>

虽然you should use latest jquery.

<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
于 2012-12-14T11:47:47.187 回答