4

ページネーションにajax機能を使用しました。この機能は他のブラウザ(FF、CHROME)で正常に動作しています。IEブラウザを受け入れます。この行のエラーとして、この次の行のエラーが発生します。

よろしくお願いします

if (req) {
  var th = this;
  req.onreadystatechange = function() {
    var s = req.readyState;
    if (s == 4) {
      // Avoid memory leak by removing closure.
      req.onreadystatechange = th.dummy;
      // Remove possible junk from response.
      var responseText = req.responseText;//Error on this line
      try {
        // Call associated dataReady().
        eval(responseText);
      } catch (e) {
        Subsys_JsHttpRequest_Js.dataReady(id, "JavaScript code generated by backend is invalid!\n"+responseText, null);
      }
    } else {
      th.readyState = s;
      if (th.onreadystatechange) th.onreadystatechange()
    }
  };

  this._id = id;
}
4

1 に答える 1

3

エンコーディングに関連するエラー メッセージに関する Microsoft の説明に従って、サーバー側の AJAX 出力に適切なエンコーディングを設定します。

于 2012-12-22T06:17:53.203 に答える