特性

布尔特性(Boolean Attributes)

简言之,如下三种表示disabled

<!--
  表示选中,其中只能如下三种,其他表示均无效
  - 仅有特性名称
  - 特性名称 + value
    - value 是跟特性名称完全一样的字符串
    - value 为空字符串
-->
<input type="checkbox" checked>
<input type="checkbox" checked="checked">
<input type="checkbox" checked="">

<!-- 表示不选中,该特性不能存在 -->
<input type="checkbox">
1
2
3
4
5
6
7
8
9
10
11
12
13

src 和 href 的区别

Difference between SRC and HREFopen in new window

超链接 rel = noopener

超链接里打开外部网站时,要在超链接上添加res="noopener",详见网站使用 rel="noopener" 打开外部锚open in new window

首字母自动大写 autocapitalize

  • none等同于off。
  • autocapitalize="words":每个单词的开头字母会自动大写。
  • autocapitalize="characters":每个字母都会大写。
  • autocapitalize="sentences":每句开头字母会自动大写。

Reference: 为移动而生的 HTML 属性 #3open in new window