为了账号安全,请及时绑定邮箱和手机立即绑定

不知道为什么不能左右移动

检查了多遍,还是不知道为什么


正在回答

2 回答

我知道为什么了,因为我在{params}这个函数里面加了个分号。。

0 回复 有任何疑惑可以回复我~
#1

qq_跟着感觉走_4

为什么加了分号就不能运行了?
2015-11-20 回复 有任何疑惑可以回复我~
<!DOCTYPE html>
<html>
<head>
    <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>jQuery动画特效</title>
    <style>
        #box{height:140px;width:140px;background-color:orange;position:absolute;left:200px;}
        #leftBtn{position:absolute;top:150px;}
        #rightBtn{position:absolute;top:150px;left:80px;}
    </style>
</head>

<body>
<div id="box"></div>
<input id="leftBtn" type="button" value="左移">
<input id="rightBtn" type="button" value="右移">
<script type="text/javascript">
    $(function(){
        var box = $("#box");
        $("#leftBtn").bind("click",function(){
            box.animate({
                left: "-=50px"
            },1000)
        });
        $("#rightBtn").bind("click",function(){
            box.animate({
                left: "+=50px"
            },1000)
        });
    });
</script>
</body>
</html>

试试看

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

不知道为什么不能左右移动

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信