舊文件

此處文件僅供參考,請自行考量時效性與適用程度,其他庫藏文件請參考文件頁面
我們亟需您的協助,進行共筆系統搬移、及文件整理工作,詳情請查閱參與我們

「使用者: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

數值運算

餘數
+ - * / %

網路資料

個人工具