在 Google Chrome 中,以下代码段:
<html xmlns = "http://www.w3.org/1999/xhtml">
<head>
<title>Example</title>
<script type = "text/javascript">
<!--
function onBodyLoad()
{
var x = 42;
document.writeln("x = " + x);
alert("on load");
}
-->
</script>
</head>
<body onload = "onBodyLoad()"></body>
</html>
不是在写
x = 42
到文档。但是会显示警报。文本和警报都显示在 IE8 和 FF 3.5 中。有什么想法吗?