案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script src="/js/jquery-1.11.1.min.js">
5
</script>
6
<script>
7
$(document).ready(function(){
8
  $("p").html("本浏览器能够创建 XMLHttpRequest 对象: " + jQuery.support.ajax);
9
  });
10
</script>
11
</head>
12
<body>
13
14
<p></p>
15
16
</body>
17
</html>