我沒有得到給定代碼的彩色輸出。沒有得到所需的輸出,而在jQuery中找到後代元素
<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>
有什麼我失蹤了嗎?謝謝,
這個作品在這裏:http://jsfiddle.net/DFYc4/使用最新的jQuery的 –
不,我也這麼認爲,但他使用的jQuery 1.3.2 – koopajah
@koopajah遐我看到它太晚 –