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;
}