案例: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
  $("#b01").click(function(){
7
  $('#myDiv').load('/example/jq/test1.txt');
8
  });
9
});
10
</script>
11
</head>
12
<body>
13
14
<div id="myDiv"><h2>通过 AJAX 改变文本</h2></div>
15
<button id="b01" type="button">改变内容</button>
16
17
</body>
18
</html>