我有这段 JavaScript 代码
price = price.replace(/(.*)\./, x => x.replace(/\./g,'') + '.')
这在 Firefox 和 Chrome 中运行良好,但是 IE=>
在我的代码中给了我一个语法错误。
有没有办法在 IE 中使用 ES6 箭头语法?
我有这段 JavaScript 代码
price = price.replace(/(.*)\./, x => x.replace(/\./g,'') + '.')
这在 Firefox 和 Chrome 中运行良好,但是 IE=>
在我的代码中给了我一个语法错误。
有没有办法在 IE 中使用 ES6 箭头语法?
IE 不支持 ES6,因此您必须坚持使用此类函数的原始编写方式。
price = price.replace(/(.*)\./, function (x) {
return x.replace(/\./g, '') + '.';
});
另外,相关:ES6 什么时候可以在 IE 中使用?