07 2016 档案

摘要:文章出处 http://www.cnblogs.com/suoning/p/5683047.html 一、简介 定义 jQuery创始人是美国John Resig,是优秀的Javascript框架; jQuery是一个轻量级、快速简洁的javaScript库。源码戳这 jQuery对象 jQuery 阅读全文
posted @ 2016-07-25 15:06 刘小轩 阅读(281) 评论(0) 推荐(0)
摘要:select * from ShopOrder where datediff(day,ordTime,getdate()-1)=0 --查询当天(2:select * from info where DateDiff(dd,datetime,getdate())=0 --前30天 SELECT * 阅读全文
posted @ 2016-07-18 10:12 刘小轩 阅读(32749) 评论(0) 推荐(0)
摘要:方法一: public static string GetString(string str, int length) { int i = 0, j = 0; foreach(char chr in str) { if((int)chr > 127) { i += 2; } else { i ++; } if (i > length) { str = str.Substring(0, j) +... 阅读全文
posted @ 2016-07-14 14:35 刘小轩 阅读(514) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2016-07-14 10:30 刘小轩 阅读(204) 评论(0) 推荐(0)