动画jQuery - 无法设置未定义的属性'cur'

时间:2014-07-26 02:49:55

标签: jquery jquery-animate

我正在尝试为iframe中的元素设置动画。

$("#Browser").contents().find("#mouse").animate({top:"10px"},500)

我似乎得到了这个错误。

TypeError: Cannot set property 'cur' of undefined

1 个答案:

答案 0 :(得分:0)

您的{top:“10px”}部分出现问题。如果你这样做,你应该尝试使用:

    $("#Browser").contents().find("#mouse").animate({top:10px;},500);