「使用者:Shyangs/JavaScript」修訂間的差異
出自 MozTW Wiki
小 (→流程控制) |
(→數值運算) |
||
| 行 57: | 行 57: | ||
==while 迴圈== | ==while 迴圈== | ||
==break、 continue、goto== | ==break、 continue、goto== | ||
| + | |||
| + | =數值運算= | ||
| + | {| style="width:50%" border="1" | ||
| + | |align="center"|加 | ||
| + | |align="center"|減 | ||
| + | |align="center"|乘 | ||
| + | |align="center"|除 | ||
| + | |align="center"|餘數 | ||
| + | |- | ||
| + | |align="center"|+ | ||
| + | |align="center"|- | ||
| + | |align="center"|* | ||
| + | |align="center"|/ | ||
| + | |align="center"|% | ||
| + | |} | ||
=網路資料= | =網路資料= | ||
於 2008年5月22日 (四) 00:30 的修訂
內容大綱
入門基礎
Hello! World!
- 網頁寫入文字"你好!"。
<html><body>
<script type="text/javascript">
document.write("你好!");
</script>
</body></html>
- 彈出對話框"你好!"。
<html><body>
<script type="text/javascript">
alert("你好!");
</script>
</body></html>
資料型態(Data type)
- Number (數字)
- String (字串)
- Boolean (真假值)
- Object (物件)
- Function (函式)
- Array (陣列)
- Date (日期)
- RegExp
- Null (空)
- Undefined (未定義)
變數(Variable)
- 用 var 來宣告變數,可以省略關鍵字 var;全域變數與區域變數。
<html><body>
<script type="text/javascript">
var gNum = 123; //全域變數
gInteger = 20; //全域變數
var gStr = "字串"; //全域變數
function func()
{
num = 33; //區域變數
str = "文字"; //區域變數
}
</script>
</body></html>
流程控制
if 條件判斷
if (條件式)
{
陳述句;
}
else
{
陳述句;
}
switch 條件判斷
for 迴圈
while 迴圈
break、 continue、goto
數值運算
| 加 | 減 | 乘 | 除 | 餘數 |
| + | - | * | / | % |
網路資料
- Mozilla 開發者中心:重新介紹 JavaScript
- w3schools_js
- JAVASCRIPT 線上教學
- 伍新華電腦工作室:JavaScript - 基礎課程
