<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script type="text/javascript"> //js判斷變量初始化有三種形式 var x; if (x == null) { alert("x為null"); } if (typeof (x) == "undefined") { alert("x為undefined"); } //判斷變量初始化推薦用這種形式 if(!x) { alert("不x"); //if(x){} 意思是:變量已經被初始化了(初始化了的意思就表示變量已經賦值了),或者變量不為空,或者變量不為undefined } </script> </head> <body> <a href="javascript:alert()" rel="external nofollow" >獲取當地時間</a> </body> </html>