我在Chrome控制台上出现此错误:
未捕获的TypeError:无法在'中使用'运营商搜索“不透明度”'未定义
我认为它与.each
功能有关,但我并不确定。
$(document).ready(function() {
function startDemo(cb){
$(this).fadeOut(400);
$("#step-1").fadeOut('400', function() {
$("#step-2").fadeIn('400', function() {
$(".pair p").each(function(i) {
var i = i + 1;
$(this).delay(i * 800).fadeIn(400);
$("#step-2").delay($(".pair p").length * 800).fadeOut(400);
});
cb();
});
});
}
function nextFunction() {
alert("test");
}
$("#play").click(function(event) {
event.preventDefault();
startDemo(function(){
nextFunction();
});
});
});