Encapsulating jquery Ajax, adding loading loading

Source: Internet
Author: User
Tags extend json
encapsulating jquery Ajax, adding loading loading Blog Category: Web front-end Web-related   JS code   $.extend ($, {       /*      & Nbsp; *ajax call encapsulation, return JSON       * url  service path       *  data General JS object       * callback  callback function       */        myajax: function (url, data, callback)  {            $.ajax ({                url: url,                 data: data,                 datatype: ' json ',                 method:  "Post",                bEforesend:function () {                    myload ();//Open load layer                 },                 Complete:function (data) {                Closeload ();//close load layer            },                 success: function (msg)  {                   if  ( typeof callback !=  ' undefined ')                         callback.call (THIS, MSG);                 }             });        }   });  
$.extend ($, {/
    * 
    *ajax call encapsulation, return JSON
    * URL service path
    * Data is generally JS object
    * Callback callback function *
    /Myajax: function (URL, data, callback) {
        $.ajax ({
            url:url,
            data:data,
            dataType: ' json ',
            method: "POST") ,
            beforesend:function () {
            	myload ();//Open load Layer
            },
            complete:function (data) {
  	        closeload ();// Close load Layer
  	    },
            success:function (msg) {
                if (typeof callback! = ' undefined ')
                    Callback.call (this, msg);
            }
        });
    }
});

JS code using: $.       Myajax ("/test", "Data=1", callBack);    function CallBack (JSON) {alert (json.msg); }

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.