JavaScript 輸出
javascript 輸出
javascript 不提供任何內(nèi)建的打印或顯示函數(shù)。
javascript 提供四種顯示方案,能夠以不同方式輸出數(shù)據(jù):
- 使用 window.alert() 寫入警告框
- 使用 document.write() 寫入 html 輸出
- 使用 innerhtml 寫入 html 元素
- 使用 console.log() 寫入瀏覽器控制臺(tái)
1. 使用 innerhtml
如需訪問 html 元素,javascript 可使用 document.getelementbyid(id) 方法。
id 屬性定義 html 元素。innerhtml 屬性定義 html 內(nèi)容:
范例
我的第一張網(wǎng)頁
我的第一個(gè)段落
document.getelementbyid("demo").innerhtml = 5 + 6;
提示:更改 html 元素的 innerhtml 屬性是在 html 中顯示數(shù)據(jù)的常用方法。
2. 使用 document.write()
出于測(cè)試目的,使用 document.write() 比較方便:
范例
我的第一張網(wǎng)頁
我的第一個(gè)段落
document.write(5 + 6);
注意:在 html 文檔完全加載后使用 document.write() 將刪除所有已有的 html :
范例
我的第一張網(wǎng)頁
我的第一個(gè)段落
試一試
提示:document.write() 方法僅用于測(cè)試。
3. 使用 window.alert()
您能夠使用警告框來顯示數(shù)據(jù):
范例
我的第一張網(wǎng)頁
我的第一個(gè)段落
window.alert(5 + 6);
4. 使用 console.log()
在瀏覽器中,您可使用 console.log() 方法來顯示數(shù)據(jù)。
請(qǐng)通過 f12 來激活瀏覽器控制臺(tái),并在菜單中選擇“控制臺(tái)”。
范例
我的第一張網(wǎng)頁
我的第一個(gè)段落
console.log(5 + 6);