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

为什么放在head里就不生效了

这里是一定要放在body里么

正在回答

3 回答

 <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>             <script type="text/javascript">
           $(function(){
            $("#btn1").bind("click",function(){
                $("div").animate(
                   {left:"-=50px"},3000)
                    
                });
                
            
            $("#btn2").bind("click",function(){
                $("div").animate(
                   {left:"+=50px"},3000)
                    
                })         
            }
        </script>

你要是放在head里面的话,就要加$(function(){    //代码  }

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

1VAN1

不好意思,给你的代码少了个括号$(function(){}), 加$(function(){ //代码 })的意思是 页面的标签加载完后,再去执行里面的代码;如果不加的话,就会按顺序加载,而你把代码放在head,那个时候还没有加载出btn1跟btn2,程序找不到这两个元素,所以就失效了
2016-05-12 回复 有任何疑惑可以回复我~
#2

punmpking 提问者 回复 1VAN1

可以了~~多谢!
2016-05-12 回复 有任何疑惑可以回复我~
#3

1VAN1 回复 punmpking 提问者

哈哈,加油
2016-05-12 回复 有任何疑惑可以回复我~
#4

1VAN1 回复 punmpking 提问者

随手给个最佳答案吧,哈哈
2016-05-12 回复 有任何疑惑可以回复我~
#5

punmpking 提问者

非常感谢!
2016-05-13 回复 有任何疑惑可以回复我~
查看2条回复

<!DOCTYPE html>

<html>

    <head>

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

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

        <style type="text/css">

        div{

        position:absolute;

        top:50px;

        left:200px;

        height:50px;

        width:50px;

        border:1px solid red;

        }

        </style>

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

             <script type="text/javascript">

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

                $("div").animate(

                   {left:"-=50px"},3000)

                    

                });

                

            

            $("#btn2").bind("click",function(){

                $("div").animate(

                   {left:"+=50px"},3000)

                    

                })         

            

        </script>   

    </head>

    

    <body>

    <div>hello world!</div><br/>

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

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


    </body>

</html>

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

代码贴出来看下

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

punmpking 提问者

放在body就可以
2016-05-12 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

为什么放在head里就不生效了

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