1、referenceError 引用错误
customiseVer is not defined // customisever这个变量没有使用var关键词定义就去使用了
2、TypeError 类型错误
Cannot read property "lang" of undefined 不能读取一个未定义的变量的“lang”属性
Cannot read property "style" of null 不能读取一个值为null的变量的style属性
由于此时box未获取到,box这个变量的值为null,所以会报这个错