JavaScript 输出
JavaScript 本身不提供任何内置的打印或显示函数。本章节提供常用的几种 javascript 方法来进行输出。
JavaScript 显示方案
JavaScript 能够以不同方式显示数据:
- 使用 window.alert() 弹出警告框
- 使用 document.write() 写入 HTML 输出
- 使用 console.log() 写入浏览器控制台
- 使用 value 属性给文本框(表单元素)赋值内容
- 使用 innerHTML 写入 HTML 元素
使用 window.alert()
您能够使用警告框来显示数据:
<!DOCTYPE html>
<html>
<body>
<h2>我的第一张网页</h2>
<p>我的第一个段落。</p>
<script>
window.alert(5 + 6);
</script>
</body>
</html>
备注:初学者也很喜欢用这个方法来调试自己的js代码。
使用 document.write()
出于测试目的,使用 document.write() 比较方便:
<!DOCTYPE html>
<html>
<body>
<h2>我的第一个网页</h2>
<p>我的第一个段落。</p>
<script>
document.write("1+1=2");
</script>
</body>
</html>
注意:在 HTML 文档完全加载后使用 document.write() 将删除所有已有的 HTML。
<!DOCTYPE html>
<html>
<body>
<h2>我的第一张网页</h2>
<p>我的第一个段落。</p>
<button type="button" onclick="document.write('1+1=2')">试一试</button>
</body>
</html>
使用 console.log()
在浏览器中,您可使用 console.log() 方法来显示数据。
以chrome为例,请通过 F12 来激活浏览器控制台,并在菜单中选择控制台。
<!DOCTYPE html>
<html>
<body>
<h2>按 F12 启动</h2>
<p>在 debugger 中选择 "Console"。然后再次点击运行按钮。</p>
<script>
console.log(5 + 6);
</script>
</body>
</html>
使用 value
如需访问 HTML 元素,JavaScript 可使用 document.getElementById(id) 方法。
id 属性定义 HTML 元素。value 属性定义表单的内容:
<!DOCTYPE html>
<html>
<body>
<h2>我的第一个网页</h2>
<p>我的第一个段落。</p>
<input id="demo">
<script>
document.getElementById("demo").value = "1+1=2";
</script>
</body>
</html>
提示:更改 input 标签的 value 属性是在 HTML 中显示数据的常用方法,当然类似也有 textarea 标签,修改其 text 属性。
使用 innerHTML
如需访问 HTML 元素,JavaScript 可使用 document.getElementById(id) 方法。
id 属性定义 HTML 元素。innerHTML 属性定义 HTML 内容:
<!DOCTYPE html>
<html>
<body>
<h2>我的第一个网页</h2>
<p>我的第一个段落。</p>
<p id="demo">
<script>
document.getElementById("demo").innerHTML = "1+1=2";
</script>
</body>
</html>
提示:更改 HTML 元素的 innerHTML 属性是在 HTML 中显示数据的常用方法。