// 这种方法不起作用 if (x == undefined) {
// 作某些操作
}// 这个方法同样不起作用- if (typeof(x) == undefined)
{
}
// 这个方法有效 if (typeof(x) == "undefined")