Advertisement
rogerin

Untitled

Feb 25th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.52 KB | None | 0 0
  1. ----------------------------------------index.html----------------------------------------------------------------------------------
  2. <!DOCTYPE html>
  3. <html lang="pt-br">
  4. <head>
  5.     <title>Pedidos Pizzaria X</title>
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  8.  
  9.     <link rel="stylesheet" type="text/css" href="style/bootstrap.css">
  10.     <link rel="stylesheet" type="text/css" href="style/estilo.css">
  11.     <script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
  12.     <script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
  13.  
  14.  
  15. <script>
  16.  
  17.  
  18. $(document).ready(function(){
  19.     $.ajax({
  20.         type:'post',
  21.         url: 'lista_pedidos.php',
  22.         dataType:'html',
  23.         success: function(dados){
  24.  
  25.             $(".container").html(dados);
  26.  
  27.         }
  28.  
  29.     });
  30.  
  31.         $('body').on('click',"button", function(){
  32.  
  33.             alert($(this).attr('rel'));
  34.        
  35.  
  36.             var id = $('table').find('td.id').text();
  37.             alert("meu id = " + id);
  38.                 $.ajax({
  39.  
  40.                     type: 'POST',
  41.                     url: 'apagar_pedido.php',
  42.                     data: '&id='+ id,
  43.                     datatype: 'html',
  44.  
  45.                     success: function(msg){
  46.  
  47.                         alert(msg);
  48.                         document.location.href="index.html";
  49.                     }
  50.  
  51.  
  52.                 });
  53.  
  54.             });
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62. });</script>
  63.  
  64. </head>
  65.  
  66.  
  67. <body>
  68. <header>
  69.  
  70.     <div class="row">
  71.  
  72.             <h2>Pizzaria Sabor e Paladar</h2>
  73.     </div>
  74. </header>
  75.     <div class="jumbotron"><h1>Recebimento de Pedidos</h1></div>
  76.  
  77.     <div class="container">
  78.         <button rel="id" > excluir </button>
  79.     </div>
  80.  
  81. </body>
  82. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement