gpt4 book ai didi

javascript - 在 IE 11 中添加startsWith

转载 作者:行者123 更新时间:2023-12-03 02:59:02 25 4
gpt4 key购买 nike

IE 11 不支持带有字符串的 startsWith。 (Look here)

如何添加原型(prototype)以使其支持该方法?

最佳答案

直接来自MDN page ,这是polyfill:

if (!String.prototype.startsWith) {
Object.defineProperty(String.prototype, 'startsWith', {
value: function(search, rawPos) {
var pos = rawPos > 0 ? rawPos|0 : 0;
return this.substring(pos, pos + search.length) === search;
}
});
}

这可以在任何浏览器中安全使用。如果该方法已经存在,则此代码将看到该方法并且不执行任何操作。如果该方法不存在,它会将其添加到 String 原型(prototype)中,以便它可用于所有字符串。

您只需将其添加到您的 JS 文件之一中的某个位置,该文​​件在启动时以及尝试使用 .startsWith() 之前执行。

如果你想要一个完全遵循规范的polyfill版本,包括所有可能的错误检查,你可以得到here ,但由于 polyfill 分布在多个文件中的方式,您可能必须将其与浏览器中的 bundler 一起使用。

关于javascript - 在 IE 11 中添加startsWith,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36213455/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com