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' 有这个报错
以上是关于Jquery中animate 不执行的主要内容,如果未能解决你的问题,请参考以下文章