$("#submit").click(function(){
jQuery.post("/shop/add/",{"product_id":"380","quantity":a1});
jQuery.post("/shop/add/",{"product_id":"381","quantity":a2});
jQuery.post("/shop/add/",{"product_id":"382","quantity":a3});
});
$("#submit").click(function(){
if(a1!='0'){
jQuery.post("/shop/add/",{"product_id":"380","quantity":a1}).complete(function(){
if(a2!='0'){ jQuery.post("/shop/add/",{"product_id":"381","quantity":a2});}
if(a3!='0'){ jQuery.post("/shop/add/",{"product_id":"382","quantity":a3});}
}).error(function() { console.log('Ошибка выполнения') });;
}
});
$("#submit").click(function(){
jQuery.post("/shop/add/",{"product_id":"380","quantity":a1}).done(function(){
jQuery.post("/shop/add/",{"product_id":"381","quantity":a2}).done(function(){
jQuery.post("/shop/add/",{"product_id":"382","quantity":a3})})});
});