JavaScript的輸出
JavaScript沒有任何打印或輸出的函數(shù)
JavaScript 顯示數(shù)據(jù)
JavaScript 可以通過不同的方式來輸出數(shù)據(jù):
- 使用 window.alert() 彈出警告框煤蹭。
- 使用 document.write() 方法將內(nèi)容寫到 HTML 文檔中笔喉。
- 使用 innerHTML 寫入到 HTML 元素。
- 使用 console.log() 寫入到瀏覽器的控制臺硝皂。
用法實(shí)例
<!DOCTYPE html>
<html>
<body>
<h1>我的第一個頁面</h1>
<p>我的第一個段落常挚。</p>
<button onclick="myFunction()">點(diǎn)我</button>
<!-- window.alert();彈出警告框來顯示數(shù)據(jù) -->
<script>
window.alert(5 + 6);
</script>
<!-- 操作 HTML 元素,從 JavaScript 訪問某個HTML 元素 -->
<script>
document.getElementById("demo").innerHTML = "段落已修改。";
</script>
<!-- 寫到 HTML 文檔 -->
<script>
document.write(Date());
function myFunction() {
document.write(Date()); // 如果在文檔已完成加載后執(zhí)行 document.write稽物,整個 HTML 頁面將被覆蓋奄毡。
}
</script>
<!-- 寫到控制臺 -->
<script>
a = 5;
b = 6;
c = a + b;
console.log(c);
</script>
</body>
</html>