You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
327 B
15 lines
327 B
2 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>JavaScript HelloWorld</title>
|
||
2 years ago
|
<script type="text/javascript">
|
||
2 years ago
|
alert("这是我的第一个JS")
|
||
|
document.write("这是我的第一个JS")
|
||
2 years ago
|
console.log("这是我的第一个JS")
|
||
|
</script>
|
||
2 years ago
|
</head>
|
||
|
<body>
|
||
|
|
||
|
</body>
|
||
|
</html>
|