摘要:
1 function toType(obj) { 2 return ({}).toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase() 3 } 阅读全文
摘要:
[root@localhost/]# nginx -s reloadnginx: [alert] kill(189, 1) failed (3: No such process) 杀死189进程,可是并没有[root@localhost /]# whereis ngnixngnix:[root@lo 阅读全文
摘要:
找到php.ini配置文件(一般都在php目录下的etc目录里),配置文件修改如下: 1 error_reporting = E_ALL|E_STRICT ;显示所有错误,严格模式下 2 display_errors = Off ;关闭错误提示 3 log_errors = On ;错误日志开启 4 阅读全文
摘要:
1 /^([1-9]\d*(\.\d{1,2})?|([0](\.([0][1-9]|[1-9]\d{0,1}))))$/ 亲测,改进版。过滤0.0和0.00两种情况! 转载自:https://blog.csdn.net/qq616592958/article/details/102466773 阅读全文
摘要:
html 部分 1 <div class="yz"> 2 <div class="img"> 3 <img class="bg" src="1.png" alt=""> 4 <img class="bg-part" src="1a.png" alt=""> 5 <div></div> 6 </div 阅读全文
摘要:
将之前写的JS获取近3个月、近1个月、近1周的日期范围进行整合并进一步优化修改 1 function getDateTime(num,dateName,startTime){ 2 //num 为所传递的数目参数; 3 //dateName 为所传递的年(year) 月(month) 日(day)的参 阅读全文
摘要:
时间格式,可以精确到秒,如2021-03-09 11:28:03 或 2021/03/09 11:28:03,个位月份或者天数等前面加上0 1 function getFormatDate(date,idToSeconds,formatStr){ 2 //date 为new Date()形式的日期 阅读全文
摘要:
针对表单校验,就是表单的某些输入框是必填项,如果表单的输入框必填项太多的情况使用。 1 //若有一个输入框为空值,返回false,全不为空返回true 2 function inputIsEmpty(inputArray){ 3 //inputArray 指定输入框的id或class的数组,如["# 阅读全文
摘要:
很多浏览器不仅仅针对密码输入框(type=password)会有自动填充问题,文本框(type=text)有的也有自动填充问题,如最新的谷歌chrome浏览器,比如很多项目涉及到金额的输入框,会自动将账号填充到金额输入框内。针对这个问题,可以通过js控制真正完美解决,就是稍微比较麻烦,可能会对项目有 阅读全文
摘要:
相信大家都玩过B站,B站在登陆的时候有个拼图滑动验证,今天就整合一下前端实现的滑动验证 拖动滑动验证(无背景图片) 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; ch 阅读全文