开发者

tagName error only in IE8 on certain

开发者 https://www.devze.com 2023-03-17 07:47 出处:网络
I have a page which uses MS Ajax to pull content from a web service on the server. This works well on most machines, but does not work in IE8 on specific machines. I have disabled all plugins on these

I have a page which uses MS Ajax to pull content from a web service on the server. This works well on most machines, but does not work in IE8 on specific machines. I have disabled all plugins on these machines and several other suggestions from around the net, but nothing works.

I get the "tagName is not an object" on line 73. When I turn on script debuging, I get the error in the following code:

Sys.Net.XMLHttpExecutor = function Sys$Net$XMLHttpExecutor() {
/// <summary locid="M:J#Sys.Net.XMLHttpExecutor.#ctor" />
if (arguments.length !== 0) throw Error.parameterCount();
Sys.Net.XMLHttpExecutor.initia开发者_JAVA百科lizeBase(this);
var _this = this;
this._xmlHttpRequest = null;
this._webRequest = null;
this._responseAvailable = false;
this._timedOut = false;
this._timer = null;
this._aborted = false;
this._started = false;
this._onReadyStateChange = (function () {

    if (_this._xmlHttpRequest.readyState === 4 ) {
        try {
            if (typeof(_this._xmlHttpRequest.status) === "undefined") {
                return;
            }
        }
        catch(ex) {
            return;
        }

        _this._clearTimer();
        _this._responseAvailable = true;
        try {
            _this._webRequest.completed(Sys.EventArgs.Empty);
        }
        finally {
            if (_this._xmlHttpRequest != null) {
                _this._xmlHttpRequest.onreadystatechange = Function.emptyMethod;
                _this._xmlHttpRequest = null;

The error is on the last finally line.


This was a bug with jQuery v1.3.2 and IE8. Upgrading to v1.4.0 solved the issue.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号