标签:spel bin strong 焦点 content 内容 spell put false
1、contentEditable属性
<p contenteditable="true">这是一段可编辑的段落。请试着编辑该文本。</p>
属性值为true、false、及classname,变为可编译文本.
2、spellcheck属性
针对于input和文本域中内容的判断,会判断正确跟错误
属性值为true、false;
<input type="text" spellcheck="true">
3、tabindex属性
用于按住tab键或鼠标获取焦点顺序
属性值为数字(当值为-1时,按住tab键不能获取焦点,程序中能读到tabindex属性)
<a href="#" tabindex="1">1</a>
<a href="#" tabindex="3">3</a>
<a href="#" tabindex="2">2</a>
<ul tabindex="4">
<li>11</li>
<li>11</li>
<li>11</li>
</ul>
标签:spel bin strong 焦点 content 内容 spell put false
原文地址:https://www.cnblogs.com/wwttc/p/11326384.html