Uncaught TypeError: Cannot set property 'cssText' of undefined
window.onload=function(){
? layout('root','box');
}
function layout(root,box){
? const boxes = document.getElementsByClassName('box');
? // 計算頁面顯示的列數(shù)(頁面寬/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";
}
我覺得很神奇了,請問控制臺為什么會報“cssText”undefined呀?
2017-10-30
我知道了,因?yàn)槲业腷oxes是數(shù)組不是一個元素嘻嘻