boolean属性

boolean属性指不需要声明取值的属性,XHTML需要每个属性声明取值,但是HTML5并不需要;

更多内容可以参考 WhatWG section on boolean attributes

boolean属性的存在表示取值为true,不存在则表示取值为false。

  1. <input type="text" disabled>
  2. <input type="checkbox" value="1" checked>
  3. <select>
  4. <option value="1" selected>1</option>
  5. </select>