我正在尝试为iframe中的元素设置动画。
$("#Browser").contents().find("#mouse").animate({top:"10px"},500)
我似乎得到了这个错误。
TypeError: Cannot set property 'cur' of undefined
答案 0 :(得分:0)
您的{top:“10px”}部分出现问题。如果你这样做,你应该尝试使用:
$("#Browser").contents().find("#mouse").animate({top:10px;},500);