说明: 直接写在html文件里,用script标签包住
规范: script标签写在</body>
上面。(先有html再加载html)
举例: alert(‘hello world,js’) 页面弹出警告对话框
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>javascript</h1>
<!-- 内部js -->
<script>
alert('hello world,js')
</script>
</body>
</html>
代码写在以.js结尾的文件里
语法:<script src="./test.js"></script>
通过script标签,src=‘路径’
引入到html页面中。
html文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>javascript</h1>
<!-- 外部js -->
<script src="./test.js"></script>
</body>
</html>
test.js
alert('hello world,js')
注意:
1.script标签中间无需写代码,否则会被忽略!
⒉.外部JavaScript会使代码更加有序,更易于复用,且没有了脚本的混合,HTML也会更加易读。
代码写在标签内部
语法: <button onclick="alert('确实点了一下')"> 点我一下 </button>
注意:vue框架会用这种模式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<button onclick="alert('确实点了一下')"> 点我一下 </button>
</body>
</html>
类似C语言
符号://
快捷键:Ctrl+/
符号:/* */
快捷键:Shift+Alt+A
<script>
// 1.document.write文档里面写入
document.write('<h1>hello</h1> ')
// 2.alert 页面警示框
alert('hello')
// 3. console.log控制台输出
console.log('console log')
// 4.输入语句 prompt
prompt('how old are you?')
</script>
在计算机科学中,字面量( literal)是在计算机中描述事/物
比如: