这篇文章主要为大家详细介绍了js 使用typeof方法判断undefined类型的简单示例,具有一定的参考价值,可以用来参考一下。
有关js判断undefined类型,使用typeof方法,typeof 返回的是字符串,其中就有一个是undefined。
/**
* 用typeof方法判断undefined类型
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
if (reValue== undefined)
{
alert("undefined");
}
/**
* 用typeof方法判断undefined类型
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
if (typeof(reValue) == "undefined")
{
alert("undefined");
}
本文来自:http://www.q1010.com/174/602-0.html
注:关于js 使用typeof方法判断undefined类型的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:typeof,undefined
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。