案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript" src="/js/jquery.js"></script>
4
<script type="text/javascript">
5
$(document).ready(function(){
6
  $("button").click(function(){
7
    $("p").css({
8
      "color":"white",
9
      "background-color":"#98bf21",
10
      "font-family":"Arial",
11
      "font-size":"20px",
12
      "padding":"5px"
13
    });
14
  });
15
});
16
</script>
17
</head>
18
19
<body>
20
<p>This is a paragraph.</p>
21
<p>This is another paragraph.</p>
22
<button type="button">改变段落的样式</button>
23
</body>
24
</html>
25