if(undefined){ alert(‘ok‘)}else{alert(‘no‘)} //no
if(""){ alert(‘ok‘)}else{alert(‘no‘)} //no
if(null){ alert(‘ok‘)}else{alert(‘no‘)}//no
if(!null){ alert(‘ok‘)}else{alert(‘no‘)}//ok
if(!""){ alert(‘ok‘)}else{alert(‘no‘)}//ok
if(!undefined){ alert(‘ok‘)}else{alert(‘no‘)}//ok
关于判空,布布扣,bubuko.com
关于判空
原文:http://www.cnblogs.com/fish24yu/p/3924661.html