换货协议确认 - 轻松便捷的换货流程
$('#agreement').click(function(){ if($(this).prop('checked')){ $('#confirm').removeAttr('disabled'); }else{ $('#confirm').attr('disabled','disabled'); } });
//提交换货 $('#confirm').click(function(){ if($('#agreement').prop('checked')){ //每次提交之前先清空 alert('确认提交换货申请?');
$.ajax({
url:'',
type:'post',
data:{
},
success:function(data){
if(data){
$('#exchange').html('');
alert('提交成功,我们将尽快为您处理!');
}
},
error:function(){
alert('提交失败,请重新提交!');
}
});
}
});
});
原文地址: https://www.cveoy.top/t/topic/lils 著作权归作者所有。请勿转载和采集!