- 博客(5)
- 收藏
- 关注
原创 MSSQL常用语句
1、查询以汉字开头的记录 select * from tb_product where proname like N'[啊-座]%' 2、跨数据库查询(数据库和表名之间加两个点) select * from [AAA]..TableA a inner join [BBB]..TableB b on a.AcountID = b.ClientID 3、重置表的自增字段 --删除原表数...
2012-07-29 20:36:40
289
原创 ACCESS数据库的内置函数
★日期/时间★ CDate 将字符串转化成为日期 select CDate("2005/4/5") Date 返回当前日期 DateAdd 将指定日期加上某个日期select dateAdd("d",30,Date())将当前日期加上30天,其中d可以换为yyyy或H等 DateDiff 判断两个日期之间的间隔 select DateDiff("d","2006-5-...
2012-07-29 20:25:37
331
原创 jQuery实现图片切换
$(document).ready(function(){ var beauBeauSlide; var imgBox=$("#imgBox ul li"); var index=0; var int=imgBox.length; autoScroll(); function autoScroll(){ imgBox.not(index).hide(); ...
2011-07-06 08:37:43
141
原创 CSS网页布局常用规范
一.文件命名规范 全局样式:global.css; 框架布局:layout.css; 字体样式:font.css; 链接样式:link.css; 打印样式:print.css; 二.常用类/ID命名规范 页 眉:header 内 容:content 容 器:container 页 脚:footer 版 权:copyright 导 航:menu 主导航:mainMenu ...
2011-01-26 17:43:56
141
原创 JQuery实现浮动面板
[code="java"] (function showQQPanel(){ var _windowScrollTop=0; //滚动条距离顶端距离 var _windowWidth=jQuery(window).width(); //窗口宽度 jQuery(window).scroll(actionEvent).resize(actionE...
2011-01-21 12:34:34
239
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人