私はJavascriptが初めてで、今日から本当に始めたばかりです。本の最初の章でいくつかの非常に基本的なコードをテストしていて、最初の例で問題が発生しました。Notepad++ でコードを書きましたが、そのプログラムでも 2 行目のコメントは黒で緑ではありません。レンダリング直後の線が表示されるのはなぜですか?</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>