jQuery 动画完成不起作用

Sno*_*lax 1 html javascript css jquery

动画本身正在运行,但为什么我的完整功能不起作用?

小提琴:https : //jsfiddle.net/jzhang172/5kfbw066/1/

$(".ok").animate({
height:"300px"

},{
 duration:2000
 }, {complete:function(){
alert('hey');
}
});
Run Code Online (Sandbox Code Playgroud)
.ok{
  background:blue;
  height:100px;
  width:200px;
}
Run Code Online (Sandbox Code Playgroud)
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="ok"></div>
Run Code Online (Sandbox Code Playgroud)

Ram*_*lfc 5

complete 是一个属性 duration

$(".ok").animate({
  height: "300px"

}, {
  duration: 2000,
  complete: function() {
    alert('hey');
  }
});
Run Code Online (Sandbox Code Playgroud)
.ok {
  background: blue;
  height: 100px;
  width: 200px;
}
Run Code Online (Sandbox Code Playgroud)
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="ok"></div>
Run Code Online (Sandbox Code Playgroud)