Safari的jQuery问题

时间:2010-12-22 15:36:50

标签: jquery css firefox safari

任何人都可以了解为什么这在Firefox中运行但在Safari中不起作用?您可以在此处查看问题:http://www.thechangestudio.com/index2.php

由于

<script type="text/javascript">

$(document).ready(function() {

    $("ul#topnav li").hover(
    function() { 
        $(this).find("span").stop(true, true).slideDown(1000); 
        return false; 
        }, function() { 
            $(this).find("span").slideUp(500); 
            return false;
        });
    }); 

</script>

1 个答案:

答案 0 :(得分:1)

Webkit浏览器(Safari,Chrome)和Opera只会在父元素中的某些位置为span元素设置动画。为动画使用其他元素,例如divanchor