Guest User

Untitled

a guest
May 16th, 2018
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $.ajax({
  2.  
  3. url:rutaOculta+"ajax/ajax.carrito.php",
  4. method:"POST",
  5. data:datos,
  6. cache:false,
  7. contentType:false,
  8. processData:false,
  9. success:function(respuesta){
  10.  
  11. var resultado=JSON.parse(respuesta);
  12.  
  13. $.each(resultado, function(index, value) {
  14. $(".cuerpo-tabla").html('<tr>'+
  15. '<th>'+inex.descripcion+'</th>'+
  16. '<th>'+inex.precio+'</th>'+
  17. '<th>'+inex.cantidad+'</th>'+
  18. '</tr>');
  19. });
  20. }
  21. })
Add Comment
Please, Sign In to add comment