jQuery悬停功能不起作用......

时间:2017-01-22 01:11:38

标签: jquery

我试图对我的HTML产生效果,效果似乎无法正常工作

$(document).ready(function () {
            $("li a").hover(function () {
                $(this).css("color","black");
            }, function () {
                $(this).css("color","white");
            });
        });

1 个答案:

答案 0 :(得分:0)

代码中的颜色是否应该反转?因此,悬停时链接会变为白色,非悬停时链接会变为黑色?

否则你的代码似乎工作正常:



$(document).ready(function () {
  $("li a").hover(function () {
    $(this).css("color","white");
  }, function () {
    $(this).css("color","black");
  });
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<ul>
  <li><a href="#">Hover me</a></li>
</ul>
&#13;
&#13;
&#13;

您是否记得包含jQuery库?