admin 发布时间:2014-11-21 分类:Web 阅读:4591次 3 条评论
要判断的变量Value,判断Value是否为undefined:
if (typeof(Value) == "undefined") {
alert("undefined");
}
else
{
alert(Value);
}
typeof 后返回的是字符串,有六种可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"....
新手勿喷....
发布于 2014-12-04 22:36:24 回复该评论
发布于 2014-11-25 20:35:00 回复该评论
但是很少用。 而且IE和chrome好像不同 特别是function
发布于 2014-11-24 17:20:46 回复该评论
发表评论:
◎欢迎您的参与讨论。