The response data type of Ajax

Source: Internet
Author: User

In XMLHttpRequest, you can receive response data in two ways, using Responsexml and ResponseText.

Using the Responsexml method, you can receive the XML-formatted string returned in the background, and the browser automatically resolves it to an XML document object, so we can directly return the data using the DOM method, such as:

Xml:

<person>

<id>1</id>

</person>

Js:

var xmldom = Xhr.responsexml;

var persons = Xmldom.getelemenstbytagname (' person ');

Using the ResponseText method, the received is a plain text string, such as: "<person><id>1</id></person>";

The Ajax module in jquery can be used to process the returned data by setting the datatype:

DATATYPE:XMLL, jquery returns an XML object (this is because the responsexml is used internally);

When datatype:html, jquery returns plain text HTML, in the returned HTML text, such as when the script is included, when inserting HTML into the DOM tree, scripts execute (this is the difference between HTML and text);

Datatype:json,jquery returns the JSON object;

The response data type of Ajax

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.