SSYT

Proiect

Jan 23rd, 2018
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.95 KB | None | 0 0
  1. <script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
  2.  
  3. <table id="produse">
  4.     <tr>
  5.       <th width="20%">Produs</th>
  6.       <th width="10%">Cantitate</th>
  7.     </tr>
  8.     <tr id="0">
  9.       <td contenteditable="true">Produs</td><td contenteditable="true">0</td>
  10.     </tr>
  11.     <tr><td></td><td><input id="add" type="button" value="Add" style="float: right;" /></td></tr>
  12. </table>
  13. <style>
  14. table#produse {
  15.     width: 30%;
  16.     background: repeat;
  17.     border: 1px solid;
  18. }
  19.  
  20. table#produse tr td[contenteditable="true"] {
  21.   border: 1px solid #000;
  22. }
  23. </style>
  24.  
  25. <script type="text/javascript">
  26. $(document).on("click", "#add", function() {
  27.   var table = document.getElementById('produse'),
  28.       count = $('tr[id]', table).attr('id');
  29.   var row = '<tr id="'+ count+1 +'"><td contenteditable="true">Nume Produs</td><td contenteditable="true">Cantitate</td></tr>';
  30.   $('tr[id]:last', table).after(row);
  31. });
  32. </script>
Advertisement
Add Comment
Please, Sign In to add comment