JavaScript基础之'script'Tag的使用

JavaScript基础之'script'Tag的使用

Use the 'script' tag to incluse your javascript code

代码如下:

<html>
<head>
<title>Title of Document</title>

<script>

// All Your Javascript Code goes In Here Between the opening and closing script tags.

</script>

</head>
<body>

The content of
your page here.

</body>
</html>

你可能感兴趣的:(JavaScript基础之'script'Tag的使用)