gpt4 book ai didi

jquery fadeIn 不工作

转载 作者:行者123 更新时间:2023-12-03 21:27:44 27 4
gpt4 key购买 nike

有人可以告诉我我做错了什么吗:

风格:

.warning{border: 1px solid #F0AAAA; background:#FFBABA; color: #C90000;}

标记:

 <p class="warning">A successful authorization already exists. 
Further authorizations are not allowed at this time.</p>

脚本:

 $().ready(function () {
alert($(".warning").html()); // WORKS
$(".warning").fadeIn(4000); // DOESN'T WORK
});

最佳答案

除非元素被隐藏,否则不会发生淡入淡出,你需要这样的东西:

$(".warning").hide().fadeIn(4000);

You can give it a try here ,而且 $() 在 1.4+ 中已被弃用,您应该使用 $(document) 或更短的版本,如下所示:

$(function() {
$(".warning").hide().fadeIn(4000);
});

另一种方法是最初为元素赋予 display: none 但是这对于禁用 JS 的用户来说会中断,或者如果发生 JavaScript 错误阻止淡入淡出,因此您可以希望避开这种方法。

关于jquery fadeIn 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3398882/

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