输出格式形如:yyyy-mm-dd hh:mm:ss
getDate() // 2020-11-23 17:12:15
getDate('2020/01/01') // 2020-01-01 00:00:00
输出格式形如:yyyy-mm-dd
getFormatDate() // 2020-11-23
getFormatDate('2020/01/01') // 2020-01-01
输出格式形如: hh:mm:ss
getFormatTime() // 17:12:15
getFormatTime('2020/01/01') // 00:00:00
参数:默认值为当前时间
描述:获取指定日期的凌晨的时间
getDawnTime('2020/01/01') // Wed Jan 01 2020 00:00:00 GMT+0800 (中国标准时间)
参数:默认值为当前时间
描述:获取指定日期的傍晚的时间
getNightTime('2020/01/01') // Wed Jan 01 2020 23:59:59 GMT+0800 (中国标准时间)
参数:默认值为当前时间
描述:获取指定日期的月初时间
getBeginOfMonth('2020/11/10 10:00:00') // Sun Nov 01 2020 00:00:00 GMT+0800 (中国标准时间)
参数:默认值为当前时间
描述:获取指定日期的月末时间
getEndOfMonth('2020/11/10 10:00:00') // Mon Nov 30 2020 23:59:59 GMT+0800 (中国标准时间)
value: 合法的数值
// 案例
thousandSeparatorFormat(12345) // 12,345
thousandSeparatorFormat(12345.12345) // 12,345.12345
thousandSeparatorFormat(0.12345) // 0.12345
返回值:android | ios | 未知类型
返回值:trident | presto | webkit | gecko
返回值:true | false
返回值:16进制颜色名,形如:#00ff00
len: 默认值为26
// 例:
getUpperCaseArr() // ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
getUpperCaseArr(2) // ['A', 'B']
len: 默认值为26
// 例:
getLowerCaseArr() // ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
getLowerCaseArr(2) // ['a', 'b']
str: 需要分割的字符串
len: 默认值为10
var str = 'this is a test 12345678';
seperateStr(str) // ['this is a ', 'test 12345', '678']
seperateStr(str, 12) // ['this is a te', 'st 12345678']
RGBToHex('rgb(0, 16, 255)') // #0010ff
HexToRGB('#10ffff') // rgb(16, 255, 255)
// 设置<title></title>之间的内容
setTitle('这里设置文档标题')