jQuery fadeOut 一个 div,fadeIn 另一个 div 在其位置
我正在尝试一个简单的 jQuery 脚本来淡出一个 div 并淡入另一个 div,但由于某种原因,第一个 div 永远不会淡出。这可能是代码的一个明显问题,但我似乎无法弄清楚。
<style>
#cuerpo { display: none; }
</style>
<div id="cuerpo"></div>
<div id="inicio"></div>
<script>
function delayed() {
$("div").fadeIn(3000, function () {
$("cuerpo").fadeIn("slow");
});
}
$("a").click(function () {
$("inicio").fadeOut("slow");
setTimeout("delayed()",500);
});
</script>
我该怎么做呢?我做错了什么?
I'm trying a simple jQuery script to fadeout one div and fadein another one in it's place but for some reason the first div never fades out. It's probably an obvious problem with the code but I cannot seem to make it out.
<style>
#cuerpo { display: none; }
</style>
<div id="cuerpo"></div>
<div id="inicio"></div>
<script>
function delayed() {
$("div").fadeIn(3000, function () {
$("cuerpo").fadeIn("slow");
});
}
$("a").click(function () {
$("inicio").fadeOut("slow");
setTimeout("delayed()",500);
});
</script>
How should I do it? What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
更新
最简单的方法是使用回调:
然后是 HTML:
OLD:
有一个简单的方法可以做到这一点:
UPDATE
The simplest way to do this is by using a callback:
then the HTML:
OLD:
There is a simple way to do this:
我认为你可以使用回调...
这是最稳定的方式...
I think you can use callback...
this is the most stable way....
有语法错误
应该是
,而不是
同样
,而不是
There is a syntax error
it should be
and not
Similarly
and not