欢迎您 本站地址:
复制网址
手机查看
切换背景
源代码:
html编辑器
颜色值转换
点击运行
小库网 <script src="https://cdn.staticfile.net/jquery/1.10.2/jquery.min.js"> </script> <script> x=0; y=0; $(document).ready(function(){ $("div.over").mouseout(function(){ $(".over span").text(x+=1); }); $("div.enter").mouseleave(function(){ $(".enter span").text(y+=1); }); }); </script> <p>mouseout 事件在鼠标离开任意一个子元素及选的元素时触发。</p> <p>mouseleave 事件只在鼠标离开选取的的元素时触发。 </p> <div class="over" style="background-color:lightgray;padding:20px;width:250px;float:left"> <h3 style="background-color:white;">Mouseout 事件触发: <span></span></h3> </div> <div class="enter" style="background-color:lightgray;padding:20px;width:250px;float:right"> <h3 style="background-color:white;">Mouseleave 事件触发: <span></span></h3> </div>
运行结果:
小库提示
扫描下方二维码,访问手机版。
打赏
关闭