#Unhandled promise rejection TypeError: Cannot set property 'width' of nul
这个是什么问题呢
#Unhandled promise rejection TypeError: Cannot set property 'width' of nul
这个是什么问题呢
这个错误是指 你要设置一个对象的width属性的值。但是这个对象是 null,所以无法设置,
比如你的代码是设置obj.width = xxxx
obj变量的值是 null
这种情况一般是因为用document.getElementById("id")没有获取到dom对象