你好我有这个脚本:
<script type="text/javascript">
function animateIt() {
$(".logo img").slideUp("slow")
}
animateIt();
</script>
当我使用幻灯片时。图像消失在顶部。但我会使用slidedown。但是当我将幻灯片更改为slideDown(“慢”)时。我的.logo img无效?我错了什么?
答案 0 :(得分:1)
你必须等待dom准备好了:
<script type="text/javascript">
function animateIt() {
$(".logo img").slideUp("slow")
}
//wait for the onload event:
$(animateIt);
</script>
答案 1 :(得分:0)
为什么在文档准备好之前运行此脚本?你试过替换animateIt();与
$(animateIt);