第一關(guān)
任務(wù)描述
要了解一門編程語言,要從輸出開始打却。
本關(guān)任務(wù):采用相關(guān)知識中介紹的任意一種方法輸出“ Hello, JavaScript! ”
過關(guān)幫助
JavaScript 三種輸出:
1. 彈出對話框模式
<!DOCTYPE html>
<html>
<body>
<script>
window.alert("Hello,World!");
</script>
</body>
</html>
2. 控制臺模式
<!DOCTYPE html>
<html>
<body>
<script>
console.log("Hello,World!");
</script>
</body>
</html>
<!--除此之外赃蛛,還有 console.error()晌砾、console.warn() 等方式實現(xiàn)輸出瓶逃,分別表示輸出錯誤梦皮,輸出警告偷拔。-->
3. 頁面輸出模式
<!DOCTYPE html>
<html>
<body>
<script>
document.write("Hello,World!");
</script>
</body>
</html>
<!--還有其他幾種比較少用的輸出方式蒋院,可參考相關(guān)文檔亏钩。-->
編程內(nèi)容
<!DOCTYPE html>
<html>
<head>
<!-- 請在此處編寫代碼 -->
<!---------Begin--------->
<script>
window.alert("Hello,JavaScript!");
<!--其它方法:
1.console.log("Hello,JavaScript!");
2.document.write("Hello,JavaScript!");
-->
</script>
<!---------End--------->
</head>
<body>
</body>
</html>
第二關(guān)
任務(wù)描述
本關(guān)任務(wù):使用內(nèi)置代碼的方式將下面的 JavaScript 代碼嵌入到 HTML 中。
console.log("如何在HTML代碼中嵌入JavaScript代碼");
編程內(nèi)容
<!DOCTYPE html>
<html>
<!-- 請在此處編寫代碼 -->
<!---------Begin--------->
<head>
<script>
console.log("如何在HTML代碼中嵌入JavaScript代碼");
</script>
</head>
<body>
</body>
<!---------End--------->
</html>