在谷歌瀏覽器,下面的代碼片段:寫在身體的onload的DOM谷歌瀏覽器不工作
<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中。有什麼想法嗎?
這是一個錯誤的Webkit:http://code.google.com/p/chromium/issues/detail?id=587有業經答案中提到的解決方法。 – 2009-12-02 16:28:41