Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很难想知道为什么这段代码不起作用:
$(document).ready(function(){ $("#text-heading").slideDown("slow"); });
我希望它按以下方式工作:当我进入页面时,选定的 div 应该向下下降,但由于某些黑暗的原因,这不会发生。jQuery 是正确的,我做了一个名称检查,所有这些我都觉得很愚蠢。
$("#text-heading")需要先隐藏才能slideDown()做任何事情。
$("#text-heading")
slideDown()
试试这个:
$("#text-heading").hide().slideDown('slow');