JavaScript输出
JavaScript 显示的可能性
JavaScript 可以通过不同的方式“显示”数据:
- 使用 . 写入 HTML 元素
innerHTML
。
- 使用 写入 HTML 输出
document.write()
。
- 使用 写入警报框
window.alert()
。
- 使用 写入浏览器控制台
console.log()
。
使用innerHTML
要访问 HTML 元素,JavaScript 可以使用该document.getElementById(id)
方法。
该id
属性定义 HTML 元素。该innerHTML
属性定义 HTML 内容:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <!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()
出于测试目的,可以方便地使用document.write()
:
1 2 3 4 5 6 7 8 9 10 11 12 13
| <!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:
1 2 3 4 5 6 7 8 9 10 11
| <!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() 方法只能用于测试。
使用 window.alert()
您可以使用警报框来显示数据:
1 2 3 4 5 6 7 8 9 10 11 12 13
| <!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
关键字是可选的:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <!DOCTYPE html> <html> <body>
<h1>My First Web Page</h1> <p>My first paragraph.</p>
<script> alert(5 + 6); </script>
</body> </html>
</html>
|
尝试一下 »
使用console.log()
为了调试目的,您可以console.log()
在浏览器中调用该方法来显示数据。
您将在后面的章节中了解有关调试的更多信息。
1 2 3 4 5 6 7 8 9 10 11 12
| <!DOCTYPE html> <html> <body>
<script> console.log(5 + 6); </script>
</body> </html>
</html>
|
尝试一下 »
JavaScript 打印
JavaScript 没有任何打印对象或打印方法。
您无法从 JavaScript 访问输出设备。
唯一的例外是,您可以window.print()
在浏览器中调用该方法来打印当前窗口的内容。
1 2 3 4 5 6 7 8
| <!DOCTYPE html> <html> <body>
<button onclick="window.print()">Print this page</button>
</body> </html>
|
尝试一下 »
0评论