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

为什么不显示呢?最后只有个ok消息,我的样式没设置么?

<!DOCTYPE html>

<html>

    <head>

        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

         <!--导入Jquery库-->

        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>

        <link href="style.css" rel="stylesheet" type="text/css" />

        <title>jQuery动画特效</title>

       

        <script type="text/css">

    span{

        position:absolute;

        width:80px;

        height:80px;

        border: solid 1px #ccc;

        margin: 0px 8px;

        background-color: Red;

        color:White;

        vertical-align:middle

        }

        </script>

    </head>

    

    <body>

    

    <input type="button" id="btn1" value="左移" >

    

    <input type="button" id="btn2" value="右移"><br/>

    <span>hello</span>

        

    </body>

    <script type"text/javascript">

        $(function(){

          $("#btn1").bind("click",

          function (){

              $("span").animate({

                  left:"+=50px"

                  },3000,function(){

                      alert("ok");

                  });

          });

            

            });

    </script>

</html>


正在回答

2 回答

对啊  是<style></style>

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

样式应该是style,你写的script,而在animate中应该不写单位的

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

举报

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

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

进入课程

为什么不显示呢?最后只有个ok消息,我的样式没设置么?

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