对象不支持属性或方法'startsWith'

时间:2018-04-04 20:12:00

标签: javascript reactjs internet-explorer webpack

在我的网站中:

{
  "presets": [
    ["env", {
      "targets": {
        "browsers": [">0.1%", "last 4 versions", "not ie <= 9"]
      }
    }]
  ]
}

但我在IE中有错误:

  

Object不支持属性或方法'startsWith'

1 个答案:

答案 0 :(得分:1)

startsWith是String的方法,'hello there'.startsWith('hello') === true。任何版本的IE都不支持它,但你可以polyfill itpolyfill.io很擅长抓住很多这些东西。