var TOOL = {
    businessAjax:function(options){
    //设置默认值
    var op=$.extend({
        type:"POST",
        url:"", /* */
        data:"", /* */
        async:false,
        dataType:"json",
        cache: false,
        success:null,
        error:null
    },options);
    jQuery.ajax({
        type:op.type,
        url:op.url,
        data:op.data,
        dataType:op.dataType,
        cache:op.cache,
        async:op.async,
        success:op.success,
        error:op.error
    });
    }
};女装品牌排行榜

//方法调用
       TOOL.businessAjax({
            url:"memberManage!adminMemberDelete.action",
            data:'memberID='+id,
            success:function(data){
                var msg=eval(data);
                     if(msg[0]!="" && msg[0]=="1"){
                        alert('会员信息删除成功!');
                     }else{内陆运输
                    alert('会员信息删除失败,请重试!');
                     }
            },
            error:function(){
                     alert('会员信息删除失败,请重试!');
               }
        });

相关文章:

  • 2021-08-11
  • 2022-02-24
  • 2021-07-23
  • 2021-07-01
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-19
  • 2021-08-23
  • 2021-08-02
  • 2022-01-18
相关资源
相似解决方案