燕十八

文档模式影响浏览器的渲染

一. Quirks mode(诡异模式)

二.Almost standards mode(几乎标准模式)

三.Standards mode (标准模式)

 

1.诡异模式代码显示

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Quiks mode(诡异模式)</title>
<style type="text/css">
input {
    font-family: Verdana, Geneva, sans-serif;
}
</style>
<script type="text/javascript">
function showInfo(){
document.getElementById("box-mode").innerHTML=document.compatMode;    
    }
</script>
</head>

<body>
<input type="button" value="显示信息" onClick="showInfo();">
<h1 id="box-mode"></h1>
</body>
</html>

 相关网址:http://en.wikipedia.org/wiki/Quirk_mode

 

posted @ 2013-05-06 06:43  启红  阅读(190)  评论(0编辑  收藏  举报