任何人都可以了解为什么这在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>
答案 0 :(得分:1)
Webkit浏览器(Safari,Chrome)和Opera只会在父元素中的某些位置为span
元素设置动画。为动画使用其他元素,例如div
或anchor
。