小编Kei*_*owe的帖子

jQuery问题:悬停,取消悬停不起作用

我遇到了问题.这是我的网站http://keironlowe.x10hosting.com/ 导航栏中移动的红线是由于下面的代码.但它没有按预期工作.我想要的是红线在悬停时变长.但是当你移开光标时回到正常尺寸,但那不能正常工作,它只能工作一次,然后你必须刷新,它不能在主链接上工作,它会变小而不是更长.救命?

<script type="text/javascript" src="jQuery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
 $('div', '#nav_container').hover(function() {
    $(this).animate({width: '220px'}, 1000);      
}, function() {
    $(this).animate({width: '300px'}, 1000); 
});
});
</script>
Run Code Online (Sandbox Code Playgroud)

jquery jquery-animate

2
推荐指数
1
解决办法
1万
查看次数

标签 统计

jquery ×1

jquery-animate ×1