第 4 章 Javascript
4.1 寫作方式
在html文件裡使用<script>
,如:
Example
<script>
document.getElementById(“demo”).innerHTML = “My First JavaScript”;
</script>
4.2 放置位子
<head>
<body>
- 外部.js檔,並在
<head>
裡用<script src=".js檔案路徑"></script>
引入。
4.3 自定函數
function 函數名稱 { ... }
Javascript函數只能被「事件」(event)啟動。
Example
<!DOCTYPE html>
<html>
<head>
<script>
function myFunction() {
document.getElementById(“demo”).innerHTML = “Paragraph changed.”;
}
</script>
</head>
<body>
<h1>A Web Page</h1>
<p id=“demo”>A Paragraph</p>
<button type=“button” onclick=“myFunction()”>Try it</button>
</body>
</html>