<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<!-- JS代码需要编写到script标签中 -->
<script type="text/javascript">
// 控制浏览器弹出一个警告框
alert("hello world.");
/*
让计算机在页面中输出一个内容
document.write()可以向body中输出一个内容
*/
document.write("hello world.");
/*
console.log()的作用向控制台输出一个内容
*/
console.log("hello world.");
</script>
</body>
</html>