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

请问大佬们 这个代码哪里错了``我检查不出来

<!DOCTYPE html>

<html>

    <head>

        <meta charset="utf-8">

        <style type="text/css">

            *{

                margin:0;

                padding:0px;

            }

            ul{

                list-style: none;

            }

            li{

                width: 100px;

                height: 100px;

                background-color: yellow;

                margin-bottom: 15px;

            }

        </style>

        <script>

        window.onload=function(){

            var Li=document.getElementsByTagName('li');

            var timer;

            for(var i=0; i < Li.length;i++){

                Li[i].timer=null;

                Li[i],onmouseover=function(){

                        smove(this,500);

                }

                Li[i].onmouseout=function(){

                       smove( this,100);

                }

            }

        }

        function smove(obj,target){

                clearInterval(obj.timer);

                obj.timer=setInterval(function(){

                var speed = (target-obj.offsetWidth)/2;

                speed=speed>0?Math.ceil(speed):Math.floor(speed);

                

                        if(obj.offsetWidth==target){

                            clearInterval(obj.timer);

                        }

                        else

                        {

                            obj.style.width=obj.offsetWidth+speed+"px";

                        }




                },30)

        }

        </script>

    </head>

    <body>

    <ul>

        <li></li>

        <li></li>

        <li></li>

        <li></li>

        <li></li>

        <li></li>

        <li></li>


    </ul>

    </body>

</html>



正在回答

1 回答

Li[i].onmouseover中的‘.’被你写成‘,’,逗号跟点的问题确实比较难找出来

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

慕函数7258168 提问者

厉害!这个细心问题``我检查了1小时``
2017-05-18 回复 有任何疑惑可以回复我~
#2

Gellin 回复 慕函数7258168 提问者

因为我犯过这样的错,才会注意到
2017-05-18 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请问大佬们 这个代码哪里错了``我检查不出来

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