Getting Started with jquery [5]-ajax

Source: Internet
Author: User

jquery provides very rich support for Ajax, see Ajax

One of the most basic is $ajax (), through different parameters, this method can be recorded to support a variety of AJAX application scenarios. Such as:

$.ajax({
url: "test.html",
cache: false,
success: function(html){
$("#results").append(html);
}
});
完整参数列表参见:options
当然,常用的应该是这些:

Load ()--Direct AJAX request results as content of the jquery object

$.get ()--Request with Get method

$.post ()--Submit by post

Ajaxstart ()/ajaxcomplete ()/ajaxerror () ...--Global Ajax event response

DEMO:

Build a Generichandler Ajax request server: CUBEHANDLER.ASHX

<%@ WebHandler language= "C #" class= "Cubehandler"%>
using System;
Using System.Web;
public class Cubehandler:ihttphandler {public
    void ProcessRequest (HttpContext context) {context
        . Response.ContentType = "Text/plain";
        int number = 0;
        Int. TryParse (context. request.params["Number"], out number);
        Context. Response.statuscode =;
        Context. Response.Cache.SetCacheability (Httpcacheability.nocache);
        Context. Response.Write (String. Format ("{0} cubed is {1}", Number,math.pow

(number, 3));
    }
    public bool IsReusable {get
        {
            true;
        }
}}

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.