问题IE带有.replace(/.*(\(\ d \))。* / s,'$ 1');

时间:2019-03-14 18:20:51

标签: jquery regex internet-explorer replace

我的Internet Explorer存在问题,我想启动此脚本:

var input = "Bloc Alimentation 230 V (1)";
console.log(input.replace(/.*(\(\d\)).*/s, '$1'));

通常答案必须是(使用Chrome,Firefox,Opera):

(1)

但是在Internet Explorer上我有这个:

Bloc Alimentation 230 V (1)

我不明白为什么。 预先感谢您的回答。

0 个答案:

没有答案