案例: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").before(function(n){
8
      return "<p>The p element below has index " + n + "</p>";
9
    });
10
  });
11
});
12
</script>
13
</head>
14
15
<body>
16
<h1>This is a heading</h1>
17
<p>This is a paragraph.</p>
18
<p>This is another paragraph.</p>
19
<button class="btn1">在每个段落前面插入新的段落</button>
20
</body>
21
</html>
22