Home  >  Article  >  Web Front-end  >  jquery simply implements the mouse to change the background image through the navigation bar_jquery

jquery simply implements the mouse to change the background image through the navigation bar_jquery

WBOY
WBOYOriginal
2016-05-16 17:08:381076browse

复制代码 代码如下:





维护中...


<script> <br>$(function(){ <br>$(".head_ul li").hover(function(){ <br>$(this).css('background','url(b2.png)'); <br>},function(){ <br>$(this).css('background','url(b1.png)'); <br>} <br>); <br>}); <br><br></script>




Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn