Jquery中animate 不执行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery中animate 不执行相关的知识,希望对你有一定的参考价值。

<html>
<head>
<title>测试</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<script type="text/javascript" src="jquery.js"></script>
<style type="text/css">

</style>
</head>
<body>
<p><div style="background:#98bf21;height:100px;width:100px;position:absolute;">
</div>
</p><br><BR><BR><BR><BR><BR><br>
<input type="button" value="move" onclick="animate()">
</body>
</html>
<script type="text/javascript">
function animate()
$("div").animate(
left:"250px",
opacity:"0.5",
height:"150px",
width:"150px"
);

</script>
如题 按钮按了没反应
Failed to execute 'animate' on 'Element' 有这个报错

参考技术A 把函数名改下就可以了本回答被提问者采纳 参考技术B hello,verygladtoansweryou.这样执行就是第一个执行完动画之后,在执行第二个的动画。不知道楼主是哪里出问题了?欢迎追问。

以上是关于Jquery中animate 不执行的主要内容,如果未能解决你的问题,请参考以下文章

使用 .animate() 的 jQuery 在 IE8 中无法执行任何操作

jQuery中动画animate(上)

自定义动画 (jQuery)

jquery animate 怎么延迟执行

jQuery-4.动画篇---自定义动画

jQuery中动画animate(下)