1. 程式人生 > >JavaScript顯示hello world

JavaScript顯示hello world

首先建立一個指令碼檔案,內容如下

<!DOCTYPE html>
<html   lang="en">
<head>
    <meta  charset="utf-8"   />
    <title>Just a test</title>
</head>
<body>
    <script   src="example.js"></script>
</body>
</html>

另存為test.html檔案。

再建立一個指令碼,內容如下

var="Hello World"
alert(var);

另存為example.js檔案。

最後將test.html檔案拖入瀏覽器顯示。