html5的新增属性
contenteditable可编辑表
contenteditable=“false”不可编辑
<body>
<h2>可编辑列表</h2>
<ul contenteditable>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
hidden不可见
<body>
<h2>可编辑列表</h2>
<ul hidden="">
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
</body>
designMode属性是这个页面可编辑,被制定on是页面可编辑,off是页面不可编辑
spellcheck检查错误
<body>
<input type="text"spellcheck=""/>
</body>
tabindex按tab键来访问指定的顺序
<body>
<a href="#" tabindex="1">hello</a>
<a href="#" tabindex="2">hello</a>
<a href="#" tabindex="3">hello</a>
</body>

浙公网安备 33010602011771号