无法执行,大神救我。。。。
函数部分应该没错,因为在其他同学的代码基础上替换成我的函数后可以执行,但是在自己这就是不行。。。不知道是神马细节啊。。。。刚入门基础差的菜鸟表示大神快来救我好吗。。。。
2015-05-14
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery动画特效</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script> <style type="text/css"> div{ color:white; font-size:20px; position:absolute; text-align:center; line-height:70px; background-color:green; width:80px; height:80px; } button{ position:relative; } </style> </head> <body> <button id="left" >左移</button> <button id="right">右移</button> <div> 移我 </div> </body> <script type="text/javascript"> $(function(){ $("#left").bind("click",function(){ $("div").stop(); $("div").animate({ left:"-=50px" },3000); }); $("#right").bind("click",function(){ $("div").stop(); $("div").animate({ left:"+=50px" },3000); }); //少了一个大括号右括号逗号。。。。 }); </script> </html>
看备注
看下这段代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery动画特效</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
<!--设置div元素居中 -->
<style>
body{ text-align:center}
.box{ margin:0 auto; width:400px; height:100px; border:8px solid grey}
/* css注释:为了观察效果设置宽度 边框 高度等样式 */
</style>
</head>
<body>
<h5>JQuery7-13编程练习</h5>
<!-- 1、创建一个div元素 -->
<div class="box"
style="color:red;background:yellow;height:100px;width:100px;position:relative;">
</div>
<!-- 2、页面中创建两个按钮 -->
<input id="btnLeft" type="button" value="左移" />
<input id="btnRight" type="button" value="右移" />
<!-- 3、实现左移和右移。 -->
<script type="text/javascript">
//A实现左移。
$(function(){
var $timeL=0;
var $timeR=0;
$("#btnLeft").bind("click",function(){
$timeL++;
$("div").animate({
left: "-=50px"
},500,function(){
$("div").html("左移"+$timeL+"次")
})
});
//B实现右移。
$("#btnRight").bind("click",function(){$("div").animate({
left: "+=50"
},500,function(){
$timeR++;
$(this).html("右移"+$timeR+"次")
})
})
});
</script>
</body>
</html>
举报