选择div中的链接设置“动画”

时间:2013-04-10 16:09:09

标签: javascript jquery mouseevent

我试图改变div中链接的颜色(mouseover / mouseout),但它不起作用......为什么?

html代码:

        <div id="Navigation">

            <a href="#">Products</a>
            <a href="#">Projects</a>
             <a href="#">Tutorials</a>
              <a href="#">Forum</a>
               <a href="#">Contact</a>

        </div>

js code:

$('#Navigation a').mouseover(function() {

   $(this).css("color", "#75c3ff");
});

$('#Navigation a').mouseout(function() {

   $(this).css("color", "#c5c5c5");
});

1 个答案:

答案 0 :(得分:1)

你不应该使用JS来实现CSS。

#Navigation a { color: #c5c5c5 }
#Navigation a:hover { color: #75c3ff }

只需注意 - 您的代码is working