Advertisement
Guest User

xd

a guest
Dec 10th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. </head>
  7. <body>
  8. <table align="center" width="40%" border="2">
  9. <tr height='100'>
  10. <td>Formularz</td>
  11. <td>Wyniki</td>
  12. </tr>
  13. <tr height="300">
  14. <td>
  15. <form>
  16. Index: <input type="text" name="a"><br>
  17. Wartosc: <input type="text" name="b"><br>
  18. <button type="button" name="btn">Add</button>
  19. <input type="reset">
  20. </form>
  21. </td>
  22. <td>
  23.  
  24. <ul id="results">
  25.  
  26. </ul>
  27.  
  28. <script>
  29.  
  30. const {a, b, btn} = document.forms[0];
  31.  
  32. const colors = [];
  33.  
  34. const plColorNames = {
  35. 'czerwony': 'red',
  36. 'niebieski': 'blue',
  37. 'zielony': 'green',
  38. };
  39.  
  40. btn.onclick = () => {
  41.  
  42. colors.push(b.value);
  43. results.innerHTML = '';
  44.  
  45. colors.forEach(c => {
  46.  
  47. let color = document.createElement('li');
  48. color.textContent = c;
  49. color.style.color = plColorNames[c] ? plColorNames[c] : 'black';
  50.  
  51. results.appendChild(color);
  52.  
  53. });
  54.  
  55. }
  56.  
  57. </script>
  58.  
  59. </td>
  60. </tr>
  61. </table>
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement