对于具有boolean值的属性:
1、当只写属性而不指定属性值时,属性值为true
<input type="checkbox" checked>
2、如果想将属性值设为false,可以不使用该属性
<input type="checkbox">
3、想让属性值为true时,也可以将属性名设为该属性
<input type="checkbox" checked="checked">
4、想让属性值为true时,也可以将属性名设为空字符串
<input type="checkbox" checked="">
1、当只写属性而不指定属性值时,属性值为true
<input type="checkbox" checked>
2、如果想将属性值设为false,可以不使用该属性
<input type="checkbox">
3、想让属性值为true时,也可以将属性名设为该属性
<input type="checkbox" checked="checked">
4、想让属性值为true时,也可以将属性名设为空字符串
<input type="checkbox" checked="">