案例: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
  $("button").click(function(){
7
    $("img").attr({width:"50",height:"80"});
8
  });
9
});
10
</script>
11
</head>
12
<body>
13
<img src="/img/eg_smile.gif" />
14
<br />
15
<button>设置图像的 width 和 height 属性</button>
16
</body>
17
</html>
18