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

后端 未结 6 1425
野性不改
野性不改 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 11:00

    One very simple (but not always the most convenient) solution is to remove the "name" attribute -- the standard requires that browsers not send unnamed values, and all browsers I know abide to this rule.

提交回复
热议问题