gpt4 book ai didi

javascript - JS : In IE11, 字符串方法 endsWith() 不工作

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:57:57 25 4
gpt4 key购买 nike

当我在 IE11 中尝试 this.form.name.endsWith("$END$") 时,出现以下错误。

Object doesn't support property or method 'endsWith'

在 Chrome 中,它工作正常。 IE11有没有其他的字符串方法

最佳答案

您可以改用 polyfill

if (!String.prototype.endsWith) {
String.prototype.endsWith = function(search, this_len) {
if (this_len === undefined || this_len > this.length) {
this_len = this.length;
}
return this.substring(this_len - search.length, this_len) === search;
};
}

引用: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith

关于javascript - JS : In IE11, 字符串方法 endsWith() 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49871609/

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