摘要:
@media screen and (max-width: 500px){ }
阅读全文
posted @ 2019-05-17 10:41
chenlw101
阅读(95)
推荐(0)
摘要:
select * from num where length(newnum) = 15 //指定字符串长度 select * from num where newnum not REGEXP '[0-9]{18}|[0-9]{17}X|[0-9]{15}'//使用正则 update num set newnum = upper(newnum) where newnum like ...
阅读全文
posted @ 2019-04-24 08:57
chenlw101
阅读(101)
推荐(0)
posted @ 2019-04-22 14:53
chenlw101
阅读(1116)
推荐(0)
摘要:
let cnData=JSON.parse(JSON.stringify(data));
阅读全文
posted @ 2019-03-12 10:29
chenlw101
阅读(99)
推荐(0)
摘要:
select count(CASE jyje WHEN '1300' THEN '2' ELSE '1' END) as count from tpent_orders where cplx = 6 and left(time,4) ='2019'
阅读全文
posted @ 2019-02-19 16:32
chenlw101
阅读(1097)
推荐(0)
摘要:
IE高级配置中,存在SSL支持协议,例如SSL TLS。 其在注册表的路径为:HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings SecureProtocols 配置选项及对应10进制几个组合为: SSL2.0 00000008(8) SSL3.0 00000020(32) ...
阅读全文
posted @ 2019-02-13 15:48
chenlw101
阅读(1207)
推荐(0)
摘要:
linux 后台运行一个服务 难免会遇到在Linux,后台执行任务。下面,总结了一下关闭窗口任然在后台执行的方法,例如 采用& 1. ps -ef |grep redis 查找自己开启的服务 ps:将某个进程显示出来-A 显示所有程序。 -e 此参数的效果和指定"A"参数相同。-f 显示UID,PP
阅读全文
posted @ 2019-01-18 16:08
chenlw101
阅读(3730)
推荐(0)
摘要:
$("#tab1").bindChildEvent("#download",function(){ var imgPathURL=$("#div_edit_image_views #image").attr("src"); if(imgPathURL){ oDownLoad(imgPathURL); ...
阅读全文
posted @ 2019-01-17 11:08
chenlw101
阅读(328)
推荐(0)
摘要:
sessionStorage.getItem('key') // 获取 sessionStorage.setItem('key','value') //设置 sessionStorage.removeItem('key') //删除 sessionStorage.clear() //清除 localStorage 同上
阅读全文
posted @ 2019-01-17 09:48
chenlw101
阅读(239)
推荐(0)
摘要:
//url encodeURI加密 window.location.href = "upload.html?sendName="+encodeURI(sendName); //接收参数 getParam("sendName") function getParam(name) { var len = name.length+1; var url = decodeUR...
阅读全文
posted @ 2019-01-17 09:44
chenlw101
阅读(333)
推荐(0)