js 快速集成开发:参数是否为空

调用方法:

//为空   

if (isNull(zkhId)) {
return;
}

 

//不为空   

if (!isNull(zkhId)) {
return;
}

 

/**
* 判断字符串是否为空
* @param str
* @returns {Boolean}
*/
function isNull(str){
if(str!=null && str!="" && str!=undefined){
return false;
}
return true;
}

posted @ 2016-10-26 16:44  董世栋  阅读(192)  评论(0编辑  收藏  举报