Home > Web Front-end > JS Tutorial > body text

jQuery 'Line 4954 Error: The property or method is not supported' problem solution_jquery

WBOY
Release: 2016-05-16 18:11:34
Original
998 people have browsed it

Solution (from here):

Find line 4954 in jQuery-1.4.2.js,
return new window.XMLHttpRequest();
modified to

Copy code The code is as follows:

if(!$.browser.msie) {
return new window.XMLHttpRequest() ;
} else {
return new window.ActiveXObject("Microsoft.XMLHTTP");
}

Over.

The reason is probably IE7/8 There is a little problem with the support for XMLHttpRequest. If the server does not send the charset HTTP Header correctly, it cannot be used normally. However, after the page is loaded, the charset can be determined by parsing the HTML Header, so the second loading of the web page will be normal.
Then let them use ActiveXObject.

Refer to the original English description:http://www.yiiframework.com/forum/index.php?/topic/9739-auto-complete-ajax-problems-in-ie-with-jquery -142/
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!