Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

single-disabled-input.html 305 B

12345678910111213141516171819
  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. <input
  12. type="text" name="hello" value="Hi"
  13. disabled
  14. />
  15. </label>
  16. <button type="submit">Submit</button>
  17. </form>
  18. </body>
  19. </html>