判断一个变量是否undefined的一种做法是:
if( typeof(xxx) === "undefined" ){ // xxx undefined }
还有一种写法是:
if( xxx === void 0 ){ // xxx undefined }