1.自定义log
function log(){
console.log.apply(console, arguments);
}
2.非空判断输出
function isNull(val){
if(val==undefined||val==null||val.toLowerCase()=="null"||val==""||val.replace(/(^s*)|(s*$)/g, "").length ==0)
return true;
return false;
}
function getNullStr(val){
if(isNull(val)){
return "";
}else{
return val;
};
}