1.<label hidden>看得見嗎</label> //hidden為隱藏屬性 2. <input tabindex="1" /> <textarea tabindex="2" spellcheck="true" cols="60" rows="5"></textarea> //spellch ...
1.<label hidden>看得見嗎</label>
//hidden為隱藏屬性
2. <input tabindex="1" />
<textarea tabindex="2" spellcheck="true" cols="60" rows="5"></textarea>
//spellcheck檢查是否有拼寫錯誤(但很奇怪親測只在谷歌上可以,谷歌上寫不寫這一句都可以,其他瀏覽器都不行)
//tabindex表示用Tab鍵的切換順序
3.<p contenteditable="true">哈哈哈哈哈</p>
<table contenteditable="true">
<tr>
<td>書記</td>
</tr>
</table>
//一個神奇的屬性:contenteditable,使內容可編輯(很好用!!)
4.<script>
window.document.designMode="on";
</script>HTML5所提供的一個JS屬性,當=“on”時,頁面中的所有文字信息都可編輯(當然,這個屬性也不常用,用的比較多的還是3)