案例:jquery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script src="/js/jquery-1.11.1.min.js"></script>
5
<script>
6
$(document).ready(function(){
7
  $("button").click(function(){
8
    alert($("#w3s").attr("href"));
9
  });
10
});
11
</script>
12
</head>
13
14
<body>
15
<p><a href="//www.w3xue.com" id="w3s">W3xue.com</a></p>
16
<button>显示 href 值</button>
17
</body>
18
19
</html>
20