Ajax ie-only problem: unkown runtime error

Source: Internet
Author: User

When I use $. Get (URL, Data, callback) to obtain an HTML segment and add it to the container issuereportiner iner, my callback is written as follows:

1 Function Appendcontenttoissuereport (o)
2 {
3 $ ( " # Issuereportiner iner " ). ATTR ( " Innerhtml " , O. responsetext );
4 }

This sectionCodeIt works normally in Firefox 3.0, but not in IE8 or IE7. After debugger, the statement $ ("# issuereportiner iner"). ATTR ("innerhtml", O. responsetext); produces an "unknown runtime error" exception. After thinking about and reading the materials, I understand that in IE, you must first create a new element and add the content to the new element, then add the new element to the container. Apply this method and change callback as follows to work properly:

1 Function Appenddatatodiv (o)
2 {
3 $ ( " <DIV/> " ). ATTR ( " Innerhtml " , O. responsetext). appendto ( " # Issuereportiner iner " );
4 }

References: http://www.mercurytide.com/knowledge/white-papers/issues-working-with-ajax

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.