标签:return lse define class gets def 对象 undefined ring
判断变量是否定义:
if(typeof(hao) == "undefined"){ //未定义 }else{ //定义 }
判断变量是否为空或NULL,是则返回‘‘, 反之返回原对象值:
function getStr(data){ if(!data){ return ‘‘; }else if(typeof(data) == "undefined"){ return ‘‘; } return data.toString(); }
标签:return lse define class gets def 对象 undefined ring
原文地址:https://www.cnblogs.com/scott-j/p/9055388.html