html属性

2017-09-06  本文已影响0人  秋枫残红

accesskey

<a href="http://www.baidu.com" accesskey="a">百度</a>
//按下alt+a打开链接

class

contenteditable

<p contenteditable="true">asdadsasdasdasdasd</p>

contextmenu

data-*

<ul>
    <li data-test="aaaaa">aaaaa</li>
    <li data-test="bbbbb">bbbbb</li>
    <li data-test="ccccc">ccccc</li>
</ul>
<script>
    const nodes=document.getElementsByTagName('li');
    for(let value of nodes){
        console.log(value.dataset.test)
        //value.dataset.test="ddddd"进行设置
    }
</script>

dir

<p dir="rtl">Write this text right-to-left!</p>

draggable

<p draggable="true">
    hello world!
</p>

dropzone

hidden

<p hidden>这个段落应该被隐藏。</p>

id

lang

spellcheck

style

tabindex

<a href="http://www.w3school.com.cn/" tabindex="2">W3School</a>
<a href="http://www.google.com/" tabindex="1">Google</a>
<a href="http://www.microsoft.com/" tabindex="3">Microsoft</a>

title

translate

上一篇 下一篇

猜你喜欢

热点阅读