最近忘记undefined是怎么判断的了,刚开始是用以下方法进行的:
if (value== undefined){
alert("undefined");
}
结构发现判断不出来,最后查了下文档发现要用typeof来断定是否为undefined值
方法:
if (typeof(reValue) == "undefined") {
alert("undefined");
}
typeof 返回的是字符串,有六种可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"
阅读(708) | 评论(0) | 转发(0) |