gpt4 book ai didi

jquery -

淡出后无法显示,这是怎么回事?

转载 作者:行者123 更新时间:2023-12-01 02:24:39 24 4
gpt4 key购买 nike

为什么#hello可以淡出但不再显示?谢谢!

<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
article, aside, figure, footer, header, hgroup,
menu, nav, section { display: block; }
</style>
<script>
$(function() {
$('#hello').delay(1000).fadeOut();
$('#hello').show();
});
</script>
</head>
<body>
<p id="hello">Hello World</p>
</body>
</html>

最佳答案

您必须通过提供回调来等待淡出效果完成:

$(function() {
$('#hello').delay(1000).fadeOut('slow', function() {
$('#hello').show();
});
});

关于jquery - <p> 淡出后无法显示,这是怎么回事?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6295678/

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