Javascript入门基础 互动版

js代码的位置

html中的js代码必须放在script标签里面。

js代码可以放在HTML页面中head和body标签部分中。

示例:

<!DOCTYPE html>
<html>
<head>
    <title>first script</title>
</head>
<body>
<script>
    document.write("hello world!");
</script>
</body>
</html>

示例讲解:

  • 这结束JavaScript,并告诉浏览器后面的代码是html。

PS: 那些老旧的实例可能会在 script 标签中使用 type="text/javascript"。现在已经不必这样做了。JavaScript 是所有现代浏览器以及 html5 中的默认脚本语言。

在右侧html代码框中第九行试试上述hello world的例子。