“html отключить кнопку” Ответ

JavaScript Disable Button

//disable the button
document.getElementById(BUTTON_ID).disabled = true;
//reable the button
document.getElementById(BUTTON_ID).removeAttribute('disabled');
Friendly Hawk

Кнопка HTML отключена

<button type="button" disabled>This button is disabled</button>
Strange Stag

JavaScript Disable Button

document.getElementById(BUTTON_ID).disabled = true;
Lovely Lion

Включить кнопку HTML

$('#Button').prop('disabled', true);
Different Dragonfly

html отключить кнопку

<button disabled>Click me</button>
Ill Iguana

Ответы похожие на “html отключить кнопку”

Вопросы похожие на “html отключить кнопку”

Больше похожих ответов на “html отключить кнопку” по HTML

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

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