案例: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
  $(".btn1").click(function(){
7
    $(document.createElement("div")).replaceAll("p");
8
  });
9
});
10
</script>
11
<style>
12
div{height:20px;background-color:yellow;margin:10px;}
13
</style>
14
</head>
15
<body>
16
<p>This is a paragraph.</p>
17
<p>This is another paragraph.</p>
18
<button class="btn1">用新的 div 替换所有段落</button>
19
</body>
20
</html>
21