案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript" src="/js/jquery.js"></script>
4
<script type="text/javascript"> 
5
 
6
$(document).ready(function(){
7
    $("[id=choose]").css("background-color","#B2E0FF");
8
});
9
 
10
</script>   
11
 
12
</head>
13
<body>
14
<html>
15
<body>
16
<h1 id="main_header">Welcome to My Homepage</h1>
17
<p class="intro">My name is Donald</p>
18
<p>I live in Duckburg</p>
19
<p>My best friend is Mickey</p>
20
<h3 id="sub_header">My uncle is Scrooge</h3>
21
<div id="choose">
22
Who is your favourite:
23
<ul>
24
<li>Goofy</li>
25
<li>Mickey</li>
26
<li>Pluto</li>
27
</ul>
28
</div>
29
</body>
30
</html>
31
 
32
 
33
</body>
34
</html>
35