Uncaught TypeError: Cannot set property 'cssText' of undefined
window.onload=function(){
? layout('root','box');
}
function layout(root,box){
? const boxes = document.getElementsByClassName('box');
? // 計(jì)算頁(yè)面顯示的列數(shù)(頁(yè)面寬/box寬)
? const boxW = boxes[0].offsetWidth;// offset方法,獲取寬度
? const cols = Math.floor(document.documentElement.clientWidth/boxW);// 獲取列數(shù)
? boxes.style.cssText = "width:"+boxW*cols+"px;margin: 0 auto";
}
我覺(jué)得很神奇了,請(qǐng)問(wèn)控制臺(tái)為什么會(huì)報(bào)“cssText”undefined呀?
2017-10-30
我知道了,因?yàn)槲业腷oxes是數(shù)組不是一個(gè)元素嘻嘻