4.1.8: jQuery事件的其他用法

 1 <style type="text/css">
 2 div{
 3     border:1px solid black;
 4     width:150px;
 5     height:30px
 6 }
 7 .over{
 8     background:gray
 9 }
10 </style>
11 <script src="jQuery/jquery-1.3.1.js"></script>
12 <script type="text/javascript">
13     $(function(){
14         $("div").bind("mouseover mouseout",function(){
15             $(this).toggleClass("over");
16         });
17     });
18 </script>
View Code
1 <body>
2 <div>我是一个div</div>
3 </body>
View Code

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。