摘要:
我们经常需要获取网页的url,此时就会用到如下: document.location.protocol //判断是 https: 还是http: document.location.hostname //获取是 localhost 还是192.168.100.118 还是www.baidu.com 阅读全文
摘要:
js的trim函数默认只能去除空白字符,下面的函数是去掉指定的字符 function trim(str, char) { if (char) { str=str.replace(new RegExp('^\\'+char+'+|\\'+char+'+$', 'g'), ''); } return s 阅读全文
摘要:
我们的需求是,今天的日期只显示 HH:mm:ss ,这种时分秒格式 看下面两个函数 //今天零点 function getTordayZero(){ return new Date(new Date().toLocaleDateString()) } //缩短时间 function shortTim 阅读全文