“jQuery отключить всю входную форму” Ответ

jQuery отключить всю входную форму

//In older versions you could use attr. 
//As of jQuery 1.6 you should use prop instead:
$("#target :input").prop("disabled", true);

//To disable all form elements inside 'target'. See :input:
//Matches all input, textarea, select and button elements.

//If you only want the <input> elements:
$("#target input").prop("disabled", true);
Shadow

Отключить поле ввода с помощью jQuery

// Disable #x
$( "#x" ).prop( "disabled", true );
 
// Enable #x
$( "#x" ).prop( "disabled", false );
Jaskaran

jQuery отключить все формы

$("#myForm :input").prop("disabled", true);
adeleyeayodeji

Ответы похожие на “jQuery отключить всю входную форму”

Вопросы похожие на “jQuery отключить всю входную форму”

Больше похожих ответов на “jQuery отключить всю входную форму” по JavaScript

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

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