实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1 id="myH1"></h1>
6
7
<p id="myP"></p>
8
9
<script>
10
/*
11
document.getElementById("myH1").innerHTML="Welcome to my Homepage";
12
document.getElementById("myP").innerHTML="This is my first paragraph.";
13
*/
14
</script>
15
16
<p><strong>Note:</strong> The comment-block is not executed.</p>
17
18
</body>
19
</html>