jquery Page Ajax Method $.load Introduction to the use of the function _jquery

Source: Internet
Author: User

Load syntax

$ (". Selector"). Load ("url", function (ResponseText, statustext, XMLHttpRequest));

Can do to load a page, if there is an error, according to the state given by StatusText, show the corresponding prompts, this is very important to users.

example, load post

The code is as follows

Copy Code code as follows:

<div id=btnajaxpost> Click Me </div>
<div id=divresult> Content Loading </div>

$ ("#btnAjaxPost"). Click (Function (Event)
{
var username = $ ("#username"). Val ();
Send POST request
$ ("#divResult"). Load ("$ (www.jb51.net) {ctx}/jqueryload", {"username": username});
});


example, load Get method

The code is as follows

Copy Code code as follows:

<div id=in_head> Content Loading <script language= "javascript" >$ (' #in_head '). Load (' ajaxlogin.php?cityid=1208 ');</script>

Ajax Method $.load garbled

The general cause of load garbled is because the two page encoding does not affect, the processing method is

1. My Display page index.html encoding is uft-8;
2. My static page foot.html coding is uft-8;

$ ("#index_foot_container"). Load ("foot.html");

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.