Results 1 issues of 7UP-hue

在IE浏览器使用时发现css资源加载失败时重试不生效 写了一个简单的demo测试 ``` Document document.addEventListener('error', function (event) { console.log('load error'); var target = event.target || event.srcElement; console.log(target); }, true) ``` 发现在chrome能够正常输出两个`load error`,但是在IE只能输出script的error。感觉像是link标签的error事件在IE监听不到?