1. 使用console.log():
console.log("Hello, World!");
这是在控制台输出信息的常用方法。你可以在浏览器的开发者工具控制台中查看这些输出。
2. 使用alert()弹窗:
alert("Hello, World!");
这会弹出一个警告框,显示指定的文本内容。这通常用于调试或显示重要信息。
3. 将内容写入HTML页面:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript Output</title>
</head>
<body>
<div id="output"></div>
<script>
document.getElementById("output").innerHTML = "Hello, World!";
</script>
</body>
</html>
在这个例子中,JavaScript代码通过innerHTML属性将文本内容插入到页面中具有id="output"的<div>元素中。
4. 使用document.write():
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript Output</title>
</head>
<body>
<script>
document.write("Hello, World!");
</script>
</body>
</html>
document.write()方法可以直接在页面上写入内容。请注意,它会覆盖整个文档,仅在文档加载期间有效,使用时要小心。
选择输出方法取决于你的需求和使用场景。通常来说,在开发过程中使用console.log()是很方便的,而在实际的网页中,将内容插入到HTML元素中更为常见。
转载请注明出处:http://www.pingtaimeng.com/article/detail/12774/JavaScript