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

Uncaught TypeError: Cannot set property 'cssText' of undefined

window.onload=function(){

  layout('root','box');

}

function layout(root,box){

  const boxes = document.getElementsByClassName('box');

  // 计算页面显示的列数(页面宽/box宽)

  const boxW = boxes[0].offsetWidth;// offset方法,获取宽度

  const cols = Math.floor(document.documentElement.clientWidth/boxW);// 获取列数

  boxes.style.cssText = "width:"+boxW*cols+"px;margin: 0 auto";

}

我觉得很神奇了,请问控制台为什么会报“cssText”undefined呀?

正在回答

1 回答

我知道了,因为我的boxes是数组不是一个元素嘻嘻

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

举报

0/150
提交
取消

Uncaught TypeError: Cannot set property 'cssText' of undefined

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