2013-10-09 60 views
0

我的問題是當我將鼠標放在fois標題上時,它的文本不會更改爲白色,我不知道我在哪裏錯了。或者包含哪些內容。請幫助我........
另一個問題時的FOI標籤是活動的,因爲它是包裹在<a></a>標籤和文字的顏色爲白色,更改鼠標上的特定標題的顏色

<!DOCTYPE html> 
    <html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
     <title></title> 
     <!-- <link href="css.css" rel="stylesheet" />--> 
     <script type="text/javascript" src="jquery-1.7.1.min.js"></script> 
     <script type="text/javascript" src="accord.js"></script> 
     <style> 
      .wrap { 
       margin-left: 0px; 
       margin-top: 0px; 
       width: 100px; 
      } 

      .accordion1 { 
       width: 178px; 
       margin: 0px; 
       padding: 0px; 
       list-style: none; 
       border: 1px solid #ddd; 
      } 

       .accordion1 h2 { 
        font-size: 12px; 
        font-weight: bold; 
        font-family: Arial, Helvetica, sans-serif; 
        margin: 0px; 
        text-decoration: none; 
        padding: .25em .25em .25em 2em; 
        color: #333; 
        background: url('compo_images/gradient_v_gray.gif') repeat-x; 
        background: url("./compo_images/arrow_exp_s.gif") 1em .75em no-repeat; 
        border-bottom: 1px solid #ddd; 
        cursor: pointer; 
       } 

        .accordion1 h2:hover { 
         background: url('compo_images/gradient_v_orange.gif') repeat-x; 
         color: white; 
        } 

       .accordion1 li div.content { 
        padding: 3px; 
        background: #fcfbfb; 
        border-bottom: 1px solid #ddd; 
        /*border: 1px solid #ddd;*/ 
       } 

       .accordion1 li:hover h2 { 
        color: white; 
        background-image: url("./compo_images/arrow_exp_n.gif"); 
        background: url('compo_images/gradient_v_orange.gif') repeat-x; 
       } 

      .accord > li { 
       padding: 0; 
       list-style-type: none; 
      } 

       .accord > li > a { 
        text-decoration: none; 
        font-family: Arial, Helvetica, sans-serif; 
        font-size: 12px; 
        padding-left: 12px; 
        color: #5f5c5c; 
        background: url("./compo_images/arrow_pointer_se.gif") 0.002em no-repeat; 
       } 

       .accord > li > ul > li > a { 
        text-decoration: none; 
        color: #5f5c5c; 
        font-family: Arial, Helvetica, sans-serif; 
        font-size: 11px; 
        background: url("./compo_images/arrow_dirmini_orange_e.gif") 0.35em no-repeat; 
        padding-left: 17px; 
       } 

       .accord > li > ul { 
        list-style-type: none; 
        text-align: left; 
        margin: 0; 
        padding: 1px; 
       } 

      .accord { 
       text-decoration: none; 
       padding-left: 5px; 
      } 

       .accord > li > a:hover { 
        color: #f8b106; 
       } 

       .accord > li > ul > li > a:hover { 
        color: #f8b106; 
       } 

      .accordion1 > li > h2.active { 
       color: white; 
       background: url('compo_images/gradient_v_orange.gif') repeat-x; 
      } 

     </style> 
    </head> 

    <body> 
     <div class="wrap"> 

      <ul class="accordion1"> 
       <li> 
        <h2 id="first">CMT</h2> 
        <div class="content"> 
         <ul class="accord"> 
          <li> 
           <a href="#">main link1</a> 
           <ul> 
            <li><a href="#">Link One</a></li> 
            <li><a href="#">Link Two</a></li> 
            <li><a href="#">Link Three</a></li> 
            <li><a href="#">Link Four</a></li> 
            <li><a href="#">Link Five</a></li> 
           </ul> 
          </li> 

          <li> 
           <a href="#">main link2</a> 
           <ul> 
            <li><a href="#">Link One</a></li> 
            <li><a href="#">Link Two</a></li> 
            <li><a href="#">Link Three</a></li> 
            <li><a href="#">Link Four</a></li> 
            <li><a href="#">Link Five</a></li> 
           </ul> 
          </li> 
         </ul> 
        </div> 
       </li> 
       <li> 
        <h2 id="fois"><a href="#" style="text-decoration:none;color:black;">FOIS</a></h2> 

       </li> 
       <li> 
        <h2>ASP</h2> 
        <div class="content"> 
         <ul> 

         </ul> 

        </div> 
       </li> 
       <li> 
        <h2>PTT</h2> 
        <div class="content"> 
         content PTT 
        </div> 
       </li> 
      </ul> 
     </div> 
     <!-- wrap --> 
    </body> 
    </html> 

協議文件

jQuery(function ($) { 
    $('.accord li').hover(function() { 
     $(this).find('ul').stop(true, true).slideDown() 
    }, function() { 
     $(this).find('ul').stop(true, true).slideUp() 
    }).find('ul').hide() 

    var $lis = $('.accordion1 > li'), $contents = $lis.children('.content').hide(); 
    var $h2s = $lis.children('h2').click(function() { 
     var $this = $(this), $t = $this.next(); 
     $contents.not($t).stop(true, true).slideUp(); 
     $this.toggleClass('active', !$t.is(':visible')); 
     $t.slideToggle(); 
     $h2s.not(this).removeClass('active'); 
    }) 
}) 

回答

1

您使用inline CSS,這將如果您在使用樣式表來!important僅覆蓋聲明color: black;

其次你需要的目標a元素,而不是h2因爲a除非你指定像a {color: inherit;}這將使所有a元素在文檔inherit父顏色,或者是具體的,你可以使用不會繼承父元素的顏色.accordion1 li h2 a {color: inherit;},如果你使用這個選擇,比你不必瞄準a其他必要的,因爲我已經在下面分享..

.accordion1 li:hover h2 a { 
    color: white !important; 
    background-image: url("./compo_images/arrow_exp_n.gif"); 
    background: url('compo_images/gradient_v_orange.gif') repeat-x; 
} 

我建議您刪除內聯樣式,而是和你贏了不必使用!important了。

Demo

+0

確定此作品現在我有另一個問題,此選項卡處於活動狀態時,鏈接的文本應更改爲白色。我已經編輯該文章,幷包括accord.js文件 – user2841408

+0

@ user2841408你應該問另一個問題,如果這是JS相關:) –

2

其他人不包裹在<a>

Demo

<li> 
    <h2 id="fois">FOIS</h2> // Your <h2> is wrapped in <a></a> here 
</li> 
+0

是的,但我想,當我將鼠標放在的FOI,因爲您所提供的相同,你的問題的樣式的文本更改爲白色 – user2841408

+0

是說,這是不改變顏色。那麼你在努力實現什麼? –

+0

當我將鼠標放在fois標題上時,fois的文本仍然是黑色而不是白色。我希望它的顏色爲白色 – user2841408

0

變化

<h2 id="fois"><a href="#" style="text-decoration:none;color:black;">FOIS</a></h2> 

<h2 id="fois"><a href="#">FOIS</a></h2> 

,並更改

.accordion1 li:hover h2 { 

.accordion1 li:hover h2, 
.accordion1 li:hover h2 a { 
0

在我看來你的問題是在錨元素上的內聯樣式。這比樣式表中的任何樣式都具有更高的特性,所以應該使用適度。

如果刪除

color:black 
從錨

,並添加:

color:black 

到:

.accordion1 h2 

這應該做的伎倆。

0

添加下面的類在樣式

#fois a:hover{ 
    color: white !important; 
    } 
+0

它只有當我把鼠標放在鏈接上,但我想當我將鼠標懸停在標題顏色文本更改爲白色 – user2841408