“Атрибуты кнопки HTML” Ответ

Атрибуты кнопок в HTML

<!-- autofocus: button gets focus when page loads -->
<button type="button" autofocus>Click Me!</button>
<!-- disabled: specifies that a button should be disabled -->
<button type="button" disabled>Click Me!</button>
<!-- form: id of form the button belongs to -->
<form action="/action_page.php" method="get" id="form1">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname">
</form>
<button type="submit" form="form1" value="Submit">Submit</button>
<!-- type: button | reset | submit -->
<form action="/action_page.php" method="get">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname">
  <button type="submit" value="Submit">Submit</button>
  <button type="reset" value="Reset">Reset</button>
</form>
Wissam

Атрибуты кнопки HTML

print("heeo")
Feyisa Gizaw

Ответы похожие на “Атрибуты кнопки HTML”

Вопросы похожие на “Атрибуты кнопки HTML”

Больше похожих ответов на “Атрибуты кнопки HTML” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования