JQuery uses ajax to dynamically load text content _ jquery

Source: Internet
Author: User
This example describes how jquery loads a piece of text through ajax. Share it with you for your reference. This is a simple example. pay attention to the encoding problem. otherwise, garbled characters may occur. The ajax () method loads remote data through an HTTP request.

This method is implemented by jQuery underlying AJAX. For easy-to-use high-level implementation, see $. get, $. post, and so on. $. Ajax () returns the created XMLHttpRequest object. In most cases, you do not need to directly operate on this function unless you need to operate on uncommon options for more flexibility.

In the simplest case, $. ajax () can be directly used without any parameters.

Load a piece of text using AJAX:

JQuery code:

$ (Document ). ready (function () {$ ("# b01 "). click (function () {htmlobj = $. ajax ({url: "/jquery/test1.txt", async: false}); $ ("# myDiv" ).html (htmlobj. responseText );});});

The above is all the content of this article. I hope you will like it.

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.