常用判断方法
Posted ycici
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用判断方法相关的知识,希望对你有一定的参考价值。
1.
function isUndefinedOrNull(obj){ return typeof obj === ‘undefined‘ || obj === null; } function isNullOrWhiteSpace(obj){ return typeof str === ‘undefined‘ || str === null || /^s*$/.test(str); } function isBoolean(obj){ return obj === true || obj === false; } function isInt(obj){ return Number(obj) === obj && obj % 1 === 0; } function isFloat(obj){ return obj === Number(obj) && obj % 1 !== 0; } function isNumber(obj){ return obj === Number(obj); } function padLeft(obj){ return (Array(length).join(‘0‘) + n).substr(-length); } function objectLength(obj){ var size = 0, key; for (key in obj) { if (obj.hasOwnProperty(key)) size++; } return size; } function IsNullOrEmpty(obj){ str === null || str===""; }
以上是关于常用判断方法的主要内容,如果未能解决你的问题,请参考以下文章