在我的网站中:
{
"presets": [
["env", {
"targets": {
"browsers": [">0.1%", "last 4 versions", "not ie <= 9"]
}
}]
]
}
但我在IE中有错误:
Object不支持属性或方法'startsWith'
答案 0 :(得分:1)
startsWith
是String的方法,'hello there'.startsWith('hello') === true
。任何版本的IE都不支持它,但你可以polyfill it。 polyfill.io很擅长抓住很多这些东西。