self_example/java_web/JavaScript/html/03-输出语句.html

20 lines
324 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>03-输出语句</title>
</head>
<body>
<script>
window.alert("hello js"); //写入警告框
document.write("hello js 2~"); //写入html页面
console.log("hello js 3~") ; //写入浏览器的控制台
</script>
</body>
</html>