Do checkbox inputs only post data if they're checked?

后端 未结 12 901
盖世英雄少女心
盖世英雄少女心 2020-11-22 08:04

Is it standard behaviour for browsers to only send the checkbox input value data if it is checked upon form submission?

And if no value data is supplied, is the defa

12条回答
  •  情深已故
    2020-11-22 08:40

    input type="hidden" name="is_main" value="0"

    input type="checkbox" name="is_main" value="1"

    so you can control like this as I did in the application. if it checks then send value 1 otherwise 0

提交回复
热议问题