js 判断undefined类型

来源:互联网 发布:电影院简单数据库设计 编辑:程序博客网 时间:2024/04/25 14:16
if (typeof(reValue) == "undefined") {
   alert("undefined");
}
0 0