Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

16 строки
308 B

  1. <!DOCTYPE html>
  2. <html lang="en-PH">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <form id="form"></form>
  9. <label>
  10. <span>Hello</span>
  11. <input type="text" name="hello" value="Hi" form="form" />
  12. </label>
  13. <button type="submit" form="form">Submit</button>
  14. </body>
  15. </html>