How to avoid sending input fields which are hidden by display:none to a server?

后端 未结 6 1426
野性不改
野性不改 2020-11-28 10:19

Imagine you have a form where you switch visibility of several fields. And if the field is not displayed you don\'t want its value to be in request.

How do you handl

6条回答
  •  眼角桃花
    2020-11-28 10:53

    What about:

    $('#divID').children(":input").prop("disabled", true); // disable
    

    and

    $('#divID').children(":input").prop("disabled", false); // enable
    

    To toggle all children inputs (selects, checkboxes, input, textareas, etc) inside a hidden div.

提交回复
热议问题