passage d'un tableau html en un tableau js

passage d'un tableau html en un tableau js - HTML/CSS - Programmation

Marsh Posté le 06-08-2011 à 16:53:31    

salut  
j'ai essayé de passer un tableau html en php et j'ai trouvé que c impossible pour cela j'essai de le passer en javascript et puis le transférer en php mais j'ai pas pu le récupérer en js. toujours c'est la dernière ligne que je trouve?
le code de la page est le suivant

Code :
  1. <html >
  2. <head>
  3. <title></title>
  4. </head>
  5. <script language=javascript>
  6. tab=new Array();
  7. i=0;
  8. function remplirtab()
  9. {
  10. tab[i,0]=document.fp.pdt.value;
  11. tab[i,1]=document.fp.qte.value;
  12. tab[i,2]=document.fp.pu.value;
  13. i++;
  14. }
  15. function affiche()
  16. {
  17. alert ('taille du tableau'+ tab.length);
  18. for (j=0;j<=tab.length;j++)
  19. {document.write(tab[j,0]);
  20. document.write(tab[j,1]);
  21. document.write(tab[j,2]);
  22. }
  23. }
  24. function ajouter()
  25. {
  26. var newRow = document.getElementById('matable').insertRow(-1);
  27. var newCell = newRow.insertCell(0);
  28. newCell.innerHTML = document.fp.pdt.value;
  29. newCell = newRow.insertCell(1);
  30. newCell.innerHTML = document.fp.qte.value;
  31. newCell = newRow.insertCell(2);
  32. newCell.innerHTML = document.fp.pu.value;
  33. }
  34. </script>
  35. <body>
  36. <form method="POST"  name=fp action=''>
  37.    <table border="0" width="100%" id="table1">
  38.     <tr>
  39.      <td rowspan="4">
  40.      <input type="button" value="Ajouter" name="aj" onclick="ajouter()"></td>
  41.     </tr>
  42.     <tr>
  43.      <td width="179"><b><font face="Georgia" color="#000080">
  44.      Produit</font></b></td>
  45.      <td><input type="text" name="pdt" size="20"></td>
  46.     </tr>
  47.     <tr>
  48.      <td width="179"><b><font face="Georgia" color="#000080">
  49.      Quantité</font></b></td>
  50.      <td><font face="Georgia" color="#FFFFFF">
  51.      <input type="text" name="qte" size="20"></font></td>
  52.     </tr>
  53.     <tr>
  54.      <td width="179">
  55.      <b><font face="Georgia" color="#000099">Prix </font></b></td>
  56.      <td><input type="text" name="pu" size="20"></td>
  57.     </tr>
  58.     </table>
  59.    <p>&nbsp;&nbsp;&nbsp; </p>
  60.    <table border="1" width="55%" id="matable">
  61.     <tr>
  62.      <td width="198"><b>
  63.      <font face="BatangChe" color="#000080">Produit</font></b></td>
  64.      <td width="105"><font face="BatangChe" color="#000080"><b>
  65.      Quantité</b></font></td>
  66.      <td><font face="BatangChe" color="#000080"><b>PU</b></font></td>
  67.     </tr>
  68.    </table>
  69.    <p><input type="submit" value="valider" name="valid"><input type="button" value="Afficher" name="B1" onclick=affiche()></p>
  70.   </form>
  71.  </body>
  72. </html>


merci de m'avoir aider ou de me donner comment procéder

Reply

Marsh Posté le 06-08-2011 à 16:53:31   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed