使用 document.write()方法来输出html内容,是比较方便的一种方法。
实例代码:
<!doctype html>
<head>
<meta charset="utf-8">
</head>
<html>
<body>
<h1>我的第一张网页</h1>
<p>这是一个5+6的计算结果</p>
<script>
document.write("5+6="+(5+6));
</script>
<p style="color:red">提示:上面的数字是使用document.write输出的。</p>
</body>
</html>
运行效果:
评论