1

このコードは、Chrome、FFX などでうまく動作します。テキストエリアのコンテンツを取得し、すべての行を異なる配列アイテムに分割します (新しい行は空の配列アイテムで表されます)。IE でテストすると、エラーがスローされます。コード:

これは、tregex の値と呼び出しです。

var tregex = /\n|([^\r\n.!?]+([.!?]+|$))/gim;

var source = $('#text').val().match(tregex).map($.trim);

.map() (IE のみ)が原因で、コードはこのエラー メッセージをスローします。

ユーザー エージェント: Mozilla/4.0 (互換性あり; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) タイムスタンプ: 2012 年 7 月 13 日 (金) 21: 52:48 UTC

メッセージ: オブジェクトはこのプロパティまたはメソッドをサポートしていません 行: 128 文字: 6 コード: 0 URI: http://mydomain.com/src/common.js

なんで?IE7+ でサポートできる方法はありますか? (これはIE8でテストされました)。

4

4 に答える 4

2

IE はひどいブラウザなので、マップ機能が組み込まれていません (少なくとも IE7-8 にはありません)。(jQuery 結果オブジェクトで呼び出すのではなく) 正規表現一致の結果で map を呼び出そうとしているので、使用できる唯一のマップは組み込みのものです (IE にはありません)。

ただし、jQuery、Underscore、Mochikit など、マップをシミュレートする多くのライブラリがあります。

jQuery を使用して、実行しようとしている操作を実行する方法の例を次に示します。

$.map($('#text').val().match(tregex), $.trim);
于 2012-07-13T22:06:57.287 に答える
1

あなたのコードが FF と Chrome で偶然動作している可能性があると思います。使うつもりだったのjQuery.mapArray.map9 より前の IE ではサポートされていないものを使用しています。

代替品として以下をご検討ください。

var source = $.map($('#text').val().match(tregex), $.trim);

これは、jQuery のマップ実装を使用して、ループしてトリムを実行します。

于 2012-07-13T22:15:44.723 に答える
0

shimを含めるだけで、サポートを追加できます。

// Production steps of ECMA-262, Edition 5, 15.4.4.19
// Reference: http://es5.github.com/#x15.4.4.19
if (!Array.prototype.map) {
  Array.prototype.map = function(callback, thisArg) {

    var T, A, k;

    if (this == null) {
      throw new TypeError(" this is null or not defined");
    }

    // 1. Let O be the result of calling ToObject passing the |this| value as the argument.
    var O = Object(this);

    // 2. Let lenValue be the result of calling the Get internal method of O with the argument "length".
    // 3. Let len be ToUint32(lenValue).
    var len = O.length >>> 0;

    // 4. If IsCallable(callback) is false, throw a TypeError exception.
    // See: http://es5.github.com/#x9.11
    if ({}.toString.call(callback) != "[object Function]") {
      throw new TypeError(callback + " is not a function");
    }

    // 5. If thisArg was supplied, let T be thisArg; else let T be undefined.
    if (thisArg) {
      T = thisArg;
    }

    // 6. Let A be a new array created as if by the expression new Array(len) where Array is
    // the standard built-in constructor with that name and len is the value of len.
    A = new Array(len);

    // 7. Let k be 0
    k = 0;

    // 8. Repeat, while k < len
    while(k < len) {

      var kValue, mappedValue;

      // a. Let Pk be ToString(k).
      //   This is implicit for LHS operands of the in operator
      // b. Let kPresent be the result of calling the HasProperty internal method of O with argument Pk.
      //   This step can be combined with c
      // c. If kPresent is true, then
      if (k in O) {

        // i. Let kValue be the result of calling the Get internal method of O with argument Pk.
        kValue = O[ k ];

        // ii. Let mappedValue be the result of calling the Call internal method of callback
        // with T as the this value and argument list containing kValue, k, and O.
        mappedValue = callback.call(T, kValue, k, O);

        // iii. Call the DefineOwnProperty internal method of A with arguments
        // Pk, Property Descriptor {Value: mappedValue, Writable: true, Enumerable: true, Configurable: true},
        // and false.

        // In browsers that support Object.defineProperty, use the following:
        // Object.defineProperty(A, Pk, { value: mappedValue, writable: true, enumerable: true, configurable: true });

        // For best browser support, use the following:
        A[ k ] = mappedValue;
      }
      // d. Increase k by 1.
      k++;
    }

    // 9. return A
    return A;
  };      
}

また、追加するes5shim.mapと、IE7-8の他のすべての不足している配列メソッドに加えて、次のような他の商品を含めることもできます。Function#bind

于 2012-07-13T22:10:48.907 に答える
0

Array.map()IE9でのみ追加されたと確信しています。代わりに、配列を手動でループする必要があります。

于 2012-07-13T22:06:11.680 に答える