2014年8月3日

oracle_decode、case

摘要: Case具有两种格式。简单Case函数和Case搜索函数。--简单Case函数CASE sexWHEN '1' THEN '男'WHEN '2' THEN '女'ELSE '其他' END--Case搜索函数CASE WHEN sex = '1' THEN '男'WHEN sex = '2' THE... 阅读全文

posted @ 2014-08-03 11:18 caroline_lc 阅读(240) 评论(0) 推荐(0) 编辑

ORACLE分页SQL语句

摘要: 1.根据ROWID来分select * from t_xiaoxi where rowid in(select rid from (select rownum rn,rid from(select rowid rid,cid from t_xiaoxi order by cid desc) wher... 阅读全文

posted @ 2014-08-03 10:31 caroline_lc 阅读(402) 评论(0) 推荐(0) 编辑

js实现淘宝首页图片轮播效果

摘要: 原文:http://ce.sysu.edu.cn/hope2008/Education/ShowArticle.asp?ArticleID=10585淘宝首页图片轮播效果 1 2 3 4 5 阅读全文

posted @ 2014-08-03 10:04 caroline_lc 阅读(1101) 评论(0) 推荐(0) 编辑

[转载] 几张非常有意义的JavaScript基础学习思维图

摘要: 原文:http://www.w3cfuns.com/forum.php?mod=viewthread&tid=5598364&extra=page%3D1%26filter%3Ddigest%26digest%3D1%26digest%3D11、JavaScript 数组2、JavaScript 函... 阅读全文

posted @ 2014-08-03 09:48 caroline_lc 阅读(492) 评论(0) 推荐(0) 编辑

CSS_position

摘要: 1、HTMLCode: id = div-before ... 阅读全文

posted @ 2014-08-03 09:25 caroline_lc 阅读(176) 评论(0) 推荐(0) 编辑

css浮动(float,clear)

摘要: 1、以div元素布局为例,div是块级元素,在页面中独占一行,自上而下排列,也就是传说中的流,是指标准流中的div.无论多么复杂的布局,其基本出发点均是:“如何在一行显示多个div元素”,显然标准流已经无法满足需求,这就要用到浮动。浮动可以理解为让某个div元素脱离标准流,漂浮在标准流之上,和标准流... 阅读全文

posted @ 2014-08-03 08:54 caroline_lc 阅读(147) 评论(0) 推荐(0) 编辑

导航