猿问

哪位大神告诉我下这个程序chrome执行会卡在宽度195,FF和IE则不会卡住,为什么啊?

<!doctype html>

<html>

<head>

    <meta charset="UTF-8">

    <title>下拉菜单</title>

    <style type="text/css">

    .bbb {

    width: 200px;

    height: 200px;

    background: red;

    }

    </style>

   <script type="text/javascript">

   window.onload = function(){

    var obj= document.getElementById("divselect");

    setInterval(function(){

        console.log("obj.style.width:"+obj.style.width+ "obj.offsetWidth:"+obj.offsetWidth);

        obj.style.width = obj.offsetWidth - 1 + "px";

    },30);

   }

   </script>

</head>

<body>

    <div id="divselect">

    </div>

</body>

</html>


劳埃德
浏览 1415回答 3
3回答

Stardust1001

.bbb是啥
随时随地看视频慕课网APP
我要回答