1

background-image:none如您所见,在悬停 li 元素时,右侧的背景图像也会在属性的帮助下随之消失。然而,只有悬停的 li 消失了,但仍然可以看到前一个 li 的背景图像。虽然是未成年人,但我希望将其删除。谁能告诉我怎么做?。:)

由于我是新手,我不允许发布图像。检查网站http://ashwin931996.webege.com/ 非常感谢 btw

4

1 回答 1

1

使用这个 jquery。在这里,我粘贴了完整的 html 代码。用这个。

<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<link type="text/css" rel="stylesheet" href=""/>
<style type="text/css">
 #header ul {
    padding-top:1em;
      }

   #header ul li a.currentpage {
    color:white !important;
    background-color: #F96E5B !important;
   }

   #header ul li a {
    text-decoration: none;
    color:#676767;
    font-family: 'Oswald', sans-serif;
    font-size: 1em;
    float:right;
    line-height: 3em;
    padding-right: 1em;
    padding-left:1em;
       }


#header ul li a.active
{background-color: #F96E99;
color: white;}


</style>
</head>
<body>
<div id="header">
 <img id="logo" src="images/logo.jpg">
 <ul>
 <li>
<a class="one active" href="#">CONTACT</a>
</li>
<li>
<a class="two" href="#">GALLERY</a>
</li  class="one">
<li>
<a class="three" href="#">EVENTS</a>
</li>
<li>
<a class="four" href="#">HOME </a>
</li>
 </ul>          
 </div>
<script type="text/javascript">
$("#header ul li a").click( function() {
$("#header ul li a").removeClass("active");
$(this).addClass("active");
})
</script>


</body>
</html>​

演示:http: //jsfiddle.net/PbMg2/2/

于 2012-10-30T14:09:45.513 回答