zoukankan      html  css  js  c++  java
  • js ajax

    //通用请求入口
    $.extend({
        ajaxReq: function(options){
            var url     = options.url || '';
            var type        = options.type|| 'get';
            var data    = options.data|| {};
            var dataType    = options.dataType || 'json';
            var async       = options.async || true;
            var successFn    = options.succuss || null;    
            var error     = option.error || null;
            var beforeFn    = option.beforeSend || null;
            var complete  = option.complete || null;
            $.ajax({
                url : url,
                type: type,
                data: data,        
                dataType : dataType,
                beforeSend:function(){                
                    if(beforeFn){
                       beforeFn.call(null, Array.prototype.slice.call(arguments));
                    }               
                },        
                complete  :function(){
                    if(complete){
                         complete.apply(null, Array.prototype.slice.call(arguments));
                    }
                },
                success   :function(msg){
                   if(successFn){
                      successFn.call(null, msg);
                   }
                },
                error     :function(){
                   if(error){
                     error.apply(null, Array.prototype.slice.call(arguments));
                   }
                }
               }
            });
        }
    });

  • 相关阅读:
    strpbrk — 在字符串中查找一组字符的任何一个字符
    strip_tags — 从字符串中去除 HTML 和 PHP 标记
    str_word_count — 返回字符串中单词的使用情况
    str_split — 将字符串转换为数组
    每日总结
    每日总结
    每日总结
    每日总结
    每日总结
    每日总结
  • 原文地址:https://www.cnblogs.com/andydao/p/5076457.html
Copyright © 2011-2022 走看看