相同的JS代码 IE11正常运行 IE10却报错 说缺少分号

2020-04-10 20:04发布

问题:

我其实是想自己自定义一个函数,来获取元素的样式,解决一下IE的兼容性问题,但是在IE11中运行没问题,而在IE10中却说我少了个分号,在其他浏览器也都是正常的

完整代码如下

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>getStyle</title>
    <style>
        div{
            width: 200px;
            height: 200px;
            background-color: brown;
        }
    </style>
    <script>
        function getStyle (obj, name) {
            return getComputedStyle(obj, null)[name] || obj.currentStyle[name];
        }
        window.onload = function () {
            let box = document.querySelector("div");
            let btn = document.querySelector("button");
            box.style.width = "250px";
            box.style.height = "250px";
            box.style.backgroundColor = "skyblue";
            btn.onclick = function () {
                alert(getStyle(box, "backgroundColor"));
            };
        };
    </script>
</head>
<body>
    <div></div>
    <button>fun</button>
</body>
</html>

截图如下:
IE11中正常运行

IE10 则报错 说我在第18行上了一个分号

webstorm中的代码截图

回答1:

16行括号结束后要打分号



回答2:

是因为加载的时候你的符号是 中文的其他的自动转换了