JS:在IE11中,字符串方法endsWith()不起作用

时间:2018-04-17 06:50:04

标签: javascript browser internet-explorer-11

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

Object doesn't support property or method 'endsWith'

在Chrome中,它的工作正常。在IE11中是否有任何替代字符串方法

4 个答案:

答案 0 :(得分:1)

您可以使用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

答案 1 :(得分:1)

hereMDN所示,IE11不支持String.endsWith。您可以使用polyfill - 它将对endsWith的支持添加到String对象上 - 或者使用现有的JavaScript函数,例如String.matchRegExp.test

this.form.name.match(/\$END\$$\)

答案 2 :(得分:0)

在IE11中没有实现的目的。你必须使用像mdn

那样的polyfill
if (!String.prototype.endsWith) {
  String.prototype.endsWith = function(searchString, position) {
      var subjectString = this.toString();
      if (typeof position !== 'number' || !isFinite(position) || Math.floor(position) !== position || position > subjectString.length) {
        position = subjectString.length;
      }
      position -= searchString.length;
      var lastIndex = subjectString.indexOf(searchString, position);
      return lastIndex !== -1 && lastIndex === position;
  };
}

答案 3 :(得分:0)

我更喜欢使用shim cdn,因为我不必担心其他开发人员会破坏js。 对于Wordpress,请使用它。

wp_enqueue_script( 'polyfill', 'https://cdn.polyfill.io/v2/polyfill.min.js' , false, '2.0.0', true);