ECMA-262标准第5版已经内置了JSON对象,最新的浏览器都已经支持了,但老的浏览器还未完全退出市场,不能完全忽略。
在地球被HTML5完全占领之前,测试一下各浏览器(主要是IE8)对内置 window.JSON 的支持情况,顺便也测了一下Box Model盒模型。
主页面代码:index.html
<html>
<head>
</head>
<body>
<script type="text/javascript" src="test.js"></script>
<hr />
<iframe src="DOCTYPE-less.html"></iframe>
<iframe src="EmulateIE7 without DOCTYPE.html"></iframe>
<iframe src="EmulateIE7 with HTML5 DOCTYPE.html"></iframe>
<iframe src="HTML5.html"></iframe>
<iframe src="XHTML 1.0 Strict.html"></iframe>
<iframe src="XHTML 1.0 Transitional.html"></iframe>
<iframe src="XHTML 1.1.html"></iframe>
<iframe src="HTML 4.01 Strict.html"></iframe>
<iframe src="HTML 4.01 Transitional.html"></iframe>
</body>
</html>
脚本代码:test.js
function print(text, style) {
var div = document.createElement('div');
div.innerHTML = text;
div.style.cssText = style;
document.body.appendChild(div);
}
function testBoxSizing() {
var div = document.createElement('div');
div.style.cssText = 'float: