gpt4 book ai didi

jQuery SlideDown() 第一次不工作

转载 作者:行者123 更新时间:2023-12-03 22:58:43 25 4
gpt4 key购买 nike

为什么slideDown()第一次不起作用?

$('#lnkInfo').click(function (e) {
e.preventDefault();
$(this).blur();
if ($(this).text() == 'More info') {
$('#spnMoreInfo').slideDown(200);
$(this).text('Less info');
}
else if ($(this).text() == 'Less info') {
$('#spnMoreInfo').slideUp(200);
$(this).text('More info');
}
});

jsfiddle here

编辑:使用 Firefox 22.0

最佳答案

更改 <span id="spnMoreInfo" ...>div 。 jQuery 在显示高度之前无法计算出高度。这就是为什么它会立即显示而不是滑动。

Modified fiddle here .

关于jQuery SlideDown() 第一次不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17573541/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com