前端数据交互

来源:互联网 发布:快递公司用什么软件 编辑:程序博客网 时间:2024/05/16 16:11
jQuery.ajax({ url: '#springUrl("/cloud/merchantProcess/onoff.htm")', type: 'POST', data: { configId:configId, definedStepId:definedStepId, stepId: stepId, operate: 'ON' }, success: function (flag, status, res) { if(res.responseText){ that.attr('data-name',res.responseText); that.attr('class', 'switch open1'); that.attr('data-open', 'open'); }else{ alert('操作失败'); } } });
0 0