2

Is there any reference that shows the default attributes values of some tags? For example if I write:

<form>
...
</form>

It rendered to something like this: (I think)

<form action="" method="get" enctype="application/x-www-form-urlencoded">
...
</form> 

Or <input></input> is rendered to <input type="text"></input>

Where I can find this information for all tags?

4

1 回答 1

5

W3C 参考可能是您最好的选择。

通常,找到正确页面的快速方法是谷歌(正如@DTDesign 所指出的)

<name of the element> site:w3.org 

只需跳过 w3schools 垃圾,寻找w3.org热门歌曲,您就可以上路了。

于 2013-07-09T10:53:46.590 回答