What's the proper value for a checked attribute of an HTML checkbox?

后端 未结 8 2155
栀梦
栀梦 2020-11-22 13:02

We all know how to form a checkbox input in HTML:


What I don\'t k

8条回答
  •  被撕碎了的回忆
    2020-11-22 13:30

    1. checked
    2. checked=""
    3. checked="checked"

      are equivalent;


    according to spec checkbox '----ⓘ checked = "checked" or "" (empty string) or empty Specifies that the element represents a selected control.---'

提交回复
热议问题