猿问

为什么代码第二行用offsetHeight而不是height

This.time=setInterval(function(){

                    This.style.height=This.offsetHeight-16+"px";

                    if(This.offsetHeight<=0)

                    clearInterval(This.time);

                },30)


慕侠4489241
浏览 1103回答 1
1回答

刚毅87

在 JS中获取元素的宽度,高度应该使用 offsetWidth 和 offsetHeight, 这是js语法
随时随地看视频慕课网APP
我要回答