Advertisement
Squito

Untitled

Nov 29th, 2017
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.48 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
  4. <title></title>
  5. </head>
  6. <body>
  7. Az első alert lefut, a második nem. Így néz ki a html:
  8. <select name="color" id="color">
  9.     <option th:each="Color:${allColor}"
  10.       th:value="${Color?.toString()}"
  11.       th:text="${Color?.toString()}">
  12.         Select color
  13.     </option>
  14. </select><br/>
  15. <script>
  16. alert("teszt");
  17. var color = $("#color").val();
  18. alert(color);
  19. </script>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement