以下代码在IE和FF上均可以通过。
<html>
<head>
<title> New Document </title>
<script language="JavaScript">
<!--
function test()
{
alert(document.documentElement.innerHTML)
}//-->
</script>
</head>
<body onload="test()">
</body>
</html>