1、注释
/* */
多行
//单行
2、常见形式
<!DOCTYPE html>
<html>
<head>
<title>My JavaScript page</title>
<script src="script04.js"></script>
</head>
<body>
<noscript>
<h2>This page requires JavaScript.</h2>
</noscript>
</body>
</html>
然后script04.js中:
fuction nn(){
alert("xxxxxx");
}