欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery導(dǎo)航制件jquery鼠標(biāo)經(jīng)過變色效果示例

 更新時間:2013年12月05日 16:18:07   作者:  
這篇文章主要介紹了jquery鼠標(biāo)經(jīng)過變色效果代碼,大家參考使用吧

復(fù)制代碼 代碼如下:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf8">
<title>鼠標(biāo)移到導(dǎo)航上面 當(dāng)前的LI變色 處于當(dāng)前的位置</title>
<style type="text/css">
ul,li{list-style:none;}
#nav li{display:inline-block;margin:0 5px;background:#ccc;padding:0 10px; line-height:24px;font-size:12px;float:left;}
#nav li.h_nav_over{background:red;color:#fff;}
#nav li.h_nav_over a{color:#fff;}
a{text-decoration:none;}

</style>
<script type="text/javascript" src="/jquery-1.10.2.min.js"></script>

<script type="text/javascript">
$(function(){
$("#nav>ul>li").mouseover(function(){
        $("#nav>ul>li").each(function(i){
            $(this).removeClass("h_nav_over");
        });
        $(this).addClass("h_nav_over");
    }).mouseout(function(){
        $(this).addClass("h_nav_over");
    });
});
</script>

</head>
<body>
<div id="nav">
     <ul>
        <li><a  href="http://www.dbjr.com.cn" >首頁</a></li><li><a  href="http://www.dbjr.com.cn/a/" >品牌商機(jī)</a></li>
        <li><a  href="http://www.dbjr.com.cn/" >精品商機(jī)</a></li><li><a  href="http://www.dbjr.com.cn/" >最新商機(jī)</a></li>
        <li><a  href="http://www.dbjr.com.cn/" >投資考察會</a></li><li><a  href="http://www.dbjr.com.cn/" >在線交流區(qū)</a></li>
     </ul>
</div>
</body>
</html>

相關(guān)文章

最新評論