HTML自闭合标签(不全待完善)

来源:互联网 发布:免费申请淘宝账号注册 编辑:程序博客网 时间:2024/05/21 06:58

<br/> <hr/>

<area/>带有可点击区域的图像映射:

<img src="planets.jpg" border="0" usemap="#planetmap" alt="Planets" /><map name="planetmap" id="planetmap"> <area shape="circle" coords="180,139,14" href ="venus.html" alt="Venus" /> <area shape="circle" coords="129,161,10" href ="mercur.html" alt="Mercury" /> <area shape="rect" coords="0,0,110,260" href ="sun.html" alt="Sun" /> </map>

<base/>标签为页面上的所有链接默认地址或默认目标

<head> <base href="http://www.w3school.com.cn/i/" /> <base target="_blank" /> </head>

<img />

<input />

<!DOPTYPE ...> 

<!-- -->

 

<script type="text/javascript" src="example.js"></script>

如果是在XHTML中可以使用

<script type="text/javascript" src="example.js"/>,不能在HTML文档中使用这种语法,不符合HTML规范,尤其得不到IE的正确解析

原创粉丝点击