淡入、淡出回调
我正在尝试制作一个简单的 Jquery 脚本,该脚本将淡出类为“内容”的所有 div。然后淡入通过 div 变量传递的 div。它的工作原理是,当单击按钮时,它会淡出并淡入正确的 div。然而,回调似乎不起作用 - 即淡入与淡出同时发生。这段代码有什么问题吗?我浏览了 Jquery 教程和其他内容,但不明白为什么回调不起作用。干杯
$(document).ready(function() {
$(".buttons").click(function(event) {
var div = this.name;
$("#" + div).siblings(".content").fadeOut(1000, function() {
$("#" + div).fadeIn(1000);
});
});
});
I'm trying to make a simple Jquery script that will fade out all divs where the class is 'content'. And then afterwards fade in the div that is passed through the div variable. It works, in the sense that it fades out and fades in the correct divs when a button is clicked. However it seems like the callback is not working - i.e. the fadeIn occurs at the same time as the fadeOut. Whats wrong with this code? I've looked through the Jquery tutorials and stuff but can't see why the callback won't work. Cheers
$(document).ready(function() {
$(".buttons").click(function(event) {
var div = this.name;
$("#" + div).siblings(".content").fadeOut(1000, function() {
$("#" + div).fadeIn(1000);
});
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
Try: