摘要: 摘自:http://www.cnblogs.com/moss_tan_jun/archive/2011/11/26/2263988.html 游标是邪恶的! 在关系数据库中,我们对于查询的思考是面向集合的。而游标打破了这一规则,游标使得我们思考方式变为逐行进行.对于类C的开发人员来着,这样的思考方式 阅读全文
posted @ 2017-07-05 16:15 GaoAnLee 阅读(636) 评论(0) 推荐(0)
摘要: function getLocalTime(nS) { var date = new Date(nS); var Y = date.getFullYear() + '-'; var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : dat 阅读全文
posted @ 2017-07-05 15:30 GaoAnLee 阅读(255) 评论(0) 推荐(0)
摘要: 摘自:http://www.cnblogs.com/tylerdonet/p/3520862.html jquery中的ajax方法参数总是记不住,这里记录一下。 1.url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。 2.type: 要求为String类型的参数,请求方式 阅读全文
posted @ 2017-07-05 15:29 GaoAnLee 阅读(166) 评论(0) 推荐(0)