Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

21 行
359 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>
  9. <label>
  10. <span>Hello</span>
  11. <select name="hello">
  12. <option>Foo</option>
  13. <option>Bar</option>
  14. <option selected>Baz</option>
  15. </select>
  16. </label>
  17. <button type="submit">Submit</button>
  18. </form>
  19. </body>
  20. </html>