Ajax problems in IE7

Source: Internet
Author: User

In development, friends who often need to use Ajax technology should have met a situation recently, which was originally developed in IE6 EnvironmentProgramIn IE7, there are hundreds of errors, either the object is invalid or the object does not support this method. In fact, this is because IE7 has more Native XMLHttp Support than IE6. There are two solutions:

1. click "Tools"-> "Internet Options"-> "advanced" and find "Enable Native XMLHttp Support" under the "Security" node. This option is checked by default, disable it to solve the problem.

2. Add judgment before creating the XMLHTTPRequest object in javascript:
If (window. activexobject ){
Req = new activexobject ("Microsoft. XMLHTTP ");
} Else if (window. activexobject ){
Req = new activexobject ("msxml2.xmlhttp. 4.0 ");
} Else if (window. activexobject ){
Req = new activexobject ("msxml2.xmlhttp ");
} Else if (window. XMLHttpRequest ){
Req = new XMLHttpRequest ();
}
Tip: You need to put window. XMLHttpRequest In the last item to solve the compatibility problem.

This allows the program to run normally on IE 6, IE7, and other browsers.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.