案例: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
  $("div").click(function() {
7
    $(this).css(
8
      "width", function(index, value) {return parseFloat(value) * 1.2;}
9
    );
10
  });
11
});
12
</script>
13
<style>
14
div {width:100px; height:50px; background-color:red;}
15
</style>
16
</head>
17
18
<body>
19
<div>请点击这里</div>
20
</body>
21
</html>
22