案例: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
  $("button").on("click",function(){ 
9
    var version = $().jquery; 
10
    alert("You are running jQuery version: " + version); 
11
  });
12
}); 
13
</script>
14
</head>
15
<body>
16
17
<button>显示版本号</button>
18
19
</body>
20
</html>