标签的默认属性值是什么

bio*_*iox 2 html

是否有任何参考显示某些标签的默认属性值?例如,如果我写:

<form>
...
</form>
Run Code Online (Sandbox Code Playgroud)

它呈现出这样的东西:(我认为)

<form action="" method="get" enctype="application/x-www-form-urlencoded">
...
</form> 
Run Code Online (Sandbox Code Playgroud)

或者<input></input>呈现给<input type="text"></input>

我可以在哪里找到所有标签的信息?

Pek*_*ica 5

W3C参考可能是你最好的选择.

一般来说,找到正确页面的快捷方式是Google(正如@DTDesign指出的那样)

<name of the element> site:w3.org 
Run Code Online (Sandbox Code Playgroud)

只是跳过w3schools垃圾,寻找w3.org命中,你就在路上.

  • 如果您只想从特定网站点击,请在google中搜索"site:w3.org",然后搜索您的标记.所以它只显示w3.org的结果 (3认同)