上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 33 下一页
摘要: 正则表达式:^([0-9]+)$ -> ^:匹配以0-9开头,[0-9]:匹配0-9数字,+:匹配至少一个数字,$:匹配以数字结尾 阅读全文
posted @ 2017-10-11 21:14 N神3 阅读(2355) 评论(0) 推荐(0) 编辑
摘要: keyframes应用在animation上,animation应用在元素上。 阅读全文
posted @ 2017-09-25 11:47 N神3 阅读(218) 评论(0) 推荐(0) 编辑
摘要: .arrow_box{animation: glow 800ms ease-out infinite alternate; } @keyframes glow { 0% { border-color: #393; box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,... 阅读全文
posted @ 2017-09-22 23:43 N神3 阅读(11000) 评论(1) 推荐(2) 编辑
摘要: 一、存储过程 二、定时任务。创建定时任务二种方式 2.1、语句块 2.2、oracle客户端(PL/SQL Developer) 阅读全文
posted @ 2017-09-22 23:41 N神3 阅读(1573) 评论(0) 推荐(0) 编辑
摘要: js评价五星 1、图片(star.png): 2、图片和html文件在同级目录 阅读全文
posted @ 2017-09-21 22:13 N神3 阅读(563) 评论(0) 推荐(0) 编辑
摘要: 注意点:1、被update主表一定要加上过滤条件。2、查询出来更新结果集,同时也要作为被更新主表的条件,作为同步大家都是更新这部分数据。update student stu set (stu.name,stu.sex) = (select bak.name,bak.sex from student_ 阅读全文
posted @ 2017-09-20 11:21 N神3 阅读(9894) 评论(0) 推荐(1) 编辑
摘要: 1、顶部滚动条 阅读全文
posted @ 2017-09-19 22:48 N神3 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 在线css兼容性处理地址:autoprefixer.github.io 阅读全文
posted @ 2017-09-19 22:16 N神3 阅读(151) 评论(0) 推荐(0) 编辑
摘要: js页面加载完后执行javascript(document.onreadystatechange 和 document.readyState) 阅读全文
posted @ 2017-09-19 22:05 N神3 阅读(731) 评论(0) 推荐(0) 编辑
摘要: $.ajax({ type: "get", async: false, url: "ajax.htm", dataType: "jsonp", jsonp: "callback", //传到服务器端参数名,需要协商一致 jsonpCallback: "callbackFunction", //传到服 阅读全文
posted @ 2017-09-07 23:40 N神3 阅读(141) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 33 下一页