上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 47 下一页
摘要: 阅读全文
posted @ 2016-01-24 21:30 fleam 阅读(533) 评论(0) 推荐(0) 编辑
摘要: 二. 闭包的应用 应用1: 这个是我在用js模拟排序算法过程遇到的问题。我要输出每一次插入排序后的数组,如果在循环中写成 setTimeout(function() { $("proc").innerHTML += arr + ""; }, i * 500);会发现每次输出的都是最终排好序的数... 阅读全文
posted @ 2016-01-24 21:14 fleam 阅读(708) 评论(0) 推荐(0) 编辑
摘要: 一、变量的作用域要理解闭包,首先必须理解Javascript特殊的变量作用域。变量的作用域无非就是两种:全局变量和局部变量。Javascript语言的特殊之处,就在于函数内部可以直接读取全局变量。Js代码 var n=999; function f1(){ alert(n); } f1... 阅读全文
posted @ 2016-01-24 21:11 fleam 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 原文http://blog.csdn.net/minidrupal/article/details/39611605移动端页面的盛行,微信的便利的页面推广等等,让越来越多的css3效果和html5在手机端大放异彩。于是乎,各式各样的简约酷炫的html5页面层出不穷,最多的就是视差滚动+css3动画。... 阅读全文
posted @ 2016-01-24 21:04 fleam 阅读(3792) 评论(0) 推荐(0) 编辑
摘要: 1. 用web storage替换cookiesCookie最大的问题是每次都会跟在请求后面。在HTML5中,用sessionStorage和localStorage把用户数据直接在客户端,这样可以减少HTTP请求的数据量。而且Web storage还提供了API来操作数据,不像cookie,还得自... 阅读全文
posted @ 2016-01-24 20:55 fleam 阅读(257) 评论(0) 推荐(0) 编辑
摘要: cd project //进入目录git init //新建gitgit add . //圈所有文件git commit -m "Initial commit." git remote add origin git@github.com:username/your-project.git ... 阅读全文
posted @ 2016-01-21 10:19 fleam 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 因为有小的业务逻辑比较复杂,orm用起来很麻烦,但是多入口又不好控制,每个页面都去包含,多了就迷了,所以就只写了个路由,加了个防注入 封装增删改查好无聊,直接封装业务逻辑,为业务而开发,业务逻辑里是面向过程的代码,但是控制调用它就是一个类的属性,面向对象 数据绑定 写好的业务逻辑就可以复用,控制器里 阅读全文
posted @ 2016-01-20 16:07 fleam 阅读(2060) 评论(0) 推荐(0) 编辑
摘要: 托盘模块Option ExplicitPublic Const MAX_TOOLTIP As Integer = 64Public Const NIF_ICON = &H2Public Const NIF_MESSAGE = &H1Public Const NIF_TIP = &H4Public C... 阅读全文
posted @ 2016-01-18 15:35 fleam 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-01-13 13:50 fleam 阅读(253) 评论(0) 推荐(0) 编辑
摘要: Array( [0] => Array ( [max] => 50 [date] => 2016-01-07 ) [1] => Array ( [max] => 100 ... 阅读全文
posted @ 2016-01-10 02:05 fleam 阅读(295) 评论(0) 推荐(0) 编辑
摘要: //最大值select max(price) max,date from on_jiaoyi_into group by date//最小值select min(price) min,date from on_jiaoyi_into group by date//开盘价select a.price,... 阅读全文
posted @ 2016-01-09 22:40 fleam 阅读(736) 评论(0) 推荐(0) 编辑
摘要: select one.max,one.min,one.low sts,c.high ens,one.time from ( select a.max max,a.min min,b.low low,a.time time,a.aid aid from (select ma... 阅读全文
posted @ 2016-01-08 21:49 fleam 阅读(507) 评论(0) 推荐(0) 编辑
摘要: select price,time from(select price,time,date from (select price,time,date from on_jiaoyi_into where sid=3order by date,time desc) a) b group by date 阅读全文
posted @ 2016-01-08 21:47 fleam 阅读(312) 评论(0) 推荐(0) 编辑
摘要: //最大最小价select max(price) max,min(price) min,time time from on_jiaoyi_into group by DATE_FORMAT(`time`,'%Y-%m-%d') //最初价select price,time from on_jiaoy... 阅读全文
posted @ 2016-01-08 17:43 fleam 阅读(246) 评论(0) 推荐(0) 编辑
摘要: select name,sum(num) numfrom on_jiaoyi_intogroup by name,num 阅读全文
posted @ 2016-01-03 17:08 fleam 阅读(308) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 47 下一页