我在编辑网页的时候,如何给网页添加一个脚本代码,现在 我们就来学习html的脚本。
实例代码:
<!doctype html>
<head>
<meta charset="utf-8">
</head>
<html>
<body>
<h3>这是一段脚本的实例</h3>
<script type="text/javascript">
document.write("<h1>Hollo World!</h1>");
</script>
</body>
</html>
运行效果:
<script>:定义一个脚本标签,type:定义脚本的属性,值为:text/javascript
document.write():脚本输出语句。括号内添加输出的内容。
评论