<script type="text/javascript">
$("#bottom").hover(function(){
$(this).addClass("hover");
},function(){
$(this).removeClass("hover");
});
</script>
<div id="bottom">零号床</div>
以上例子中在div中添加clsss="hover"
© 版权声明
分享是一种美德,转载请保留原链接
THE END
<script type="text/javascript">
$("#bottom").hover(function(){
$(this).addClass("hover");
},function(){
$(this).removeClass("hover");
});
</script>
<div id="bottom">零号床</div>
以上例子中在div中添加clsss="hover"
暂无评论内容