Fork me on GitHub
上一页 1 2 3 4 5 6 7 ··· 31 下一页
摘要: var z_time = Date.parse('Jul 4, 2018 12:00:00 AM');//先转成时间戳 function timestampToTime( z_time ) { //时间戳为10位需*1000,时间戳为13位的话不需乘1000在转成yymmdd var date = new Date( z_time ); var ... 阅读全文
posted @ 2018-12-17 16:26 森海轮回 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 优点:分为一个时间选择控件,和一个json自定义级联控件 缺点:该选择器暂不开放定位功能 >.< 文档如下: https://www.jianshu.com/p/7ce2f467a6bd 我的网盘下载,里面有我的快速入手demo,密码:2cet https://pan.baidu.com/s/16N 阅读全文
posted @ 2018-12-17 14:39 森海轮回 阅读(995) 评论(1) 推荐(0) 编辑
摘要: android使用window.resize 苹果软键盘时候,window.resize不起作用 https://blog.csdn.net/u012982629/article/details/81905894 还一个方法,就是使用媒体查询@media,但是局限性很大 阅读全文
posted @ 2018-12-17 09:01 森海轮回 阅读(780) 评论(0) 推荐(0) 编辑
摘要: //兼容微信6.74 ios12版本 var u = navigator.userAgent; var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); if(isiOS){ $("input,textarea,select").blur(function(){ setTimeout(function(){ ... 阅读全文
posted @ 2018-12-14 17:44 森海轮回 阅读(3925) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/feijiges/article/details/77949502 阅读全文
posted @ 2018-12-13 16:09 森海轮回 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 资料: https://developers.weixin.qq.com/community/develop/doc/00044ae90742f8c82fb78fcae56800 //兼容微信6.74 ios12版本 var u = navigator.userAgent;var isiOS = ! 阅读全文
posted @ 2018-12-13 09:07 森海轮回 阅读(1387) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/hunhun1122/article/details/82861973 阅读全文
posted @ 2018-12-06 13:34 森海轮回 阅读(157) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/l8l8/p/9317069.html 一、Session 简单介绍 session 是另一种记录客户状态的机制,不同的是 Cookie 保存在客户端浏览器中,而 session 保存在服 务器上。 Session 的用途: session 运行在服务器 阅读全文
posted @ 2018-12-03 13:58 森海轮回 阅读(435) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/SamWeb/p/6543931.html 阅读全文
posted @ 2018-12-03 10:25 森海轮回 阅读(106) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xiaohuochai/p/7215067.html?utm_source=itdadao&utm_medium=referral 阅读全文
posted @ 2018-11-30 17:23 森海轮回 阅读(115) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 31 下一页