当前位置: 代码迷 >> JavaScript >> js判断对像样否为空
  详细解决方案

js判断对像样否为空

热度:116   发布时间:2012-08-21 13:00:21.0
js判断对象是否为空
/** Check whether string s is empty. */
function isEmpty(s)
{
return ((s == undefined || s == null || s == "") ? true : false);
}
  相关解决方案