<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- 内嵌式的js -->
<script>
alert('风里雨里')
</script>
<!-- 外部js 双标签 -->
<script src="my.js"></script>
</head>
<body>
<!-- 行内式js -->
<input type="button" value="点我" onclick="alert('我在这里等你')">
</body>
</html>

被折叠的 条评论
为什么被折叠?



