我是 Javascript 的新手,就像今天才真正开始使用它一样。我在一本书的第一章中测试了一些非常基本的代码,并在第一个示例中遇到了问题。我在 Notepad++ 中编写了代码,但即使在那个程序中,我的第二行注释也是黑色而不是绿色。为什么</noscript>
渲染后立即出现线条?
我的浏览器的输出呈现为:Hello World! // Display a message dialog after the page has loaded.
<!DOCTYPE html>
<html>
<body>
<div id = "panel">
<script type = "text/javascript">
// Dynamically write a text string as the page loads.
document.write("Hello World!");
</script>
<noscript>Javascript is Not Enabled!</noscript>
// Display a message dialog after the page has loaded.
<body onload = " window.alert('Document Loaded!');">
</div>
</body>
</html>