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.
我有一个高度为 100 像素的 div,它隐藏在页面加载中。当我单击另一个链接时,我想通过仅使用 show() 突然显示其高度的一半(50px),其余 50px 应该以向下滑动的效果显示。怎么可能,有什么帮助吗?
不知何故,可能是这样的:
$("#linkClick").click(function() { $("#yourDiv").css("height", "50px"); $("#yourDiv").show(); $("#yourDiv").slideDown(); });
希望能帮助到你。