摘要:
在TP5模版中,用来输出循环数据的volist标签,offset属性只能使用数字常量,不能使用变量。而length可以使用变量。 有这样一个应用场景:当volist循环需要排除前面几个数据的时候,我们通常使用offset来操作。而假设前面要排除的数据是根据当前页面占位符来确定的,而需要排除的数据量就 阅读全文
摘要:
body { background:#000 url('../images/bg.jpg') no-repeat center top; background-size:cover; background-attachment:fixed;} body:before {content:'';posi 阅读全文
摘要:
全局样式加入 *{-moz-user-select: none; /*火狐*/ -webkit-user-select: none; /*webkit浏览器*/ -ms-user-select: none; /*IE10*/ -khtml-user-select: none; /*早期浏览器*/ u 阅读全文
摘要:
.div::-webkit-scrollbar { display: none!important; width: 0px; height: 0px; } 阅读全文
摘要:
垂直方向滑动,高度自适应;加载高度获取不正确,导致显示异常。 var ListSwiper = new Swiper('#listText',{ autoHeight:true, observer:true, observeParents:true, direction:'vertical', au 阅读全文
摘要:
方法一: var endTime = new Date('2018/08/10 11:59:59') alert(endTime.getTime()) 方法二: varendTime = new Date("Jan 1, 1970 00:00:00") console.log(endTime.get 阅读全文
摘要:
1、手机/电话号码保留前三位和后四位,中间的用*代替 //{:substr_replace($tel, '****',3, 4)} 例如: <?php $tel = '1234567890'; //1.字符串截取法 $new_tel1 = substr($tel, 0, 3).'****'.subs 阅读全文
摘要:
1、清除图片下方的几像素空白间隙 第一种: img{display:block} 第二种: img{vertical-align:top;} 除了top值,还可以设置为text-top | middle | bottom | text-bottom 2、让文本垂直对齐文本输入框 input{vert 阅读全文
摘要:
$(document).click(function(e){ var box = $('.box'); //目标区域 if(!box.is(e.target) && box.has(e.target).length 0){//Mark console.log(其他区域); // 功能代码 } }); 阅读全文
摘要:
var time = Date.parse( new Date() ).toString();//获取到毫秒的时间戳,精确到毫秒 time = time.substr(0,10);//精确到秒 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> </ 阅读全文
摘要:
解决方法如下: 找到 phpMyAdmin / libraries / config.default.php 文件打开, 修改 $cfg['LoginCookieValidity'] = 1440; 将1440修改成更大的值即可。 阅读全文
摘要:
<select name="searchfield" id="searchfield" onChange="getfield();"> <option value="time" selected>时间</option> <option value="student">学员</option> <opt 阅读全文
摘要:
input,textarea{outline:none;box-shadow:none;appearance:none} textarea{resize:none} 阅读全文
摘要:
input[type=number] { -moz-appearance: textfield; } input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { -web 阅读全文