jQuery中的animate()方法,无效怎么办,求告知错误
<scripttype="text/javascript"src="jquery.min.js"></script><scripttype="text/javascrip...
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("button").bind("click",function(){
$("div").animate({width:"300px",height:"300px"},"slow",function(){alert('123');});
});
}
</script>
</head>
<body>
<div style="background-color:black;position:relative;"></div>
<button>点击我</button>
</body>
</html>
不知道为什么动画不能实现,是我的语法有错误吗?可是我看不出来啊 展开
<script type="text/javascript">
$(document).ready(function()
{
$("button").bind("click",function(){
$("div").animate({width:"300px",height:"300px"},"slow",function(){alert('123');});
});
}
</script>
</head>
<body>
<div style="background-color:black;position:relative;"></div>
<button>点击我</button>
</body>
</html>
不知道为什么动画不能实现,是我的语法有错误吗?可是我看不出来啊 展开
展开全部
你的$(document).ready少了一个小括弧,结束应该是}),例子在下面
<script type="text/javascript">
$(document).ready(function()
{
$("button").bind("click",function(){
$("div").animate({width:"300px",height:"300px"},"slow",function(){alert('123');});
});
})
</script>
</head>
<body>
<div style="background-color:black;position:relative;"></div>
<button>点击我</button>
</body>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询