Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以告诉我如何一个接一个地触发事件吗?我选择了 3 个班级。我需要在第一堂课点击后触发一个事件,然后它应该转到第二堂课,依此类推......
$(".col-1 #number, .col-2 #number, .col-3 #number").waterDrop({event:"mouseover"});
$(".col-1 #number1").click(function(){ $(".col-2 #number2").hide(500,function(){ $(".col-2 #number3").show() }) })
使用回调函数