JavaScript 可以通过不同的方式 "display" 数据:
innerHTML
。document.write()
。window.alert()
。console.log()
。要访问 HTML 元素,JavaScript 可以使用document.getElementById(id)
方法。
这个id
属性定义 HTML 元素。这innerHTML
属性定义 HTML 内容:
<!DOCTYPE html>
<html>
<body>
<h1>My First Web Page</h1>
<p>My First Paragraph</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = 5 + 6;
</script>
</body>
</html>
亲自试一试 »
更改 HTML 元素的innerHTML 属性是在 HTML 中显示数据的常见方法。
出于测试目的,使用起来很方便document.write()
:
<!DOCTYPE html>
<html>
<body>
<h1>My First Web Page</h1>
<p>My first paragraph.</p>
<script>
document.write(5 + 6);
</script>
</body>
</html>
亲自试一试 »
加载 HTML 文档后使用 document.write() 将会删除所有现有的 HTML:
<!DOCTYPE html>
<html>
<body>
<h1>My First Web Page</h1>
<p>My first paragraph.</p>
<button type="button" onclick="document.write(5 + 6)">Try it</button>
</body>
</html>
亲自试一试 »
document.write() 方法只能用于测试。
您可以使用警报框来显示数据:
<!DOCTYPE html>
<html>
<body>
<h1>My First Web Page</h1>
<p>My first paragraph.</p>
<script>
window.alert(5 + 6);
</script>
</body>
</html>
亲自试一试 »
您可以跳过window
关键字。
在 JavaScript 中,window 对象是全局范围对象。这意味着变量、属性和方法默认属于 window 对象。这也意味着指定window
关键字是可选的:
<!DOCTYPE html>
<html>
<body>
<h1>My First Web Page</h1>
<p>My first paragraph.</p>
<script>
alert(5 + 6);
</script>
</body>
</html>
亲自试一试 »
出于调试目的,您可以调用console.log()
方法在浏览器中显示数据。
您将在后面的章节中了解有关调试的更多信息。
JavaScript 没有任何打印对象或打印方法。
您无法从 JavaScript 访问输出设备。
唯一的例外是您可以调用window.print()
方法在浏览器中打印当前窗口的内容。
<!DOCTYPE html>
<html>
<body>
<button onclick="window.print()">Print this page</button>
</body>
</html>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!