摘要:
1、给页面文档添加一个点击事件函数,在函数内实现隐藏菜单功能。 $('html').click(function(){//Hide the menus if visible});//用$(document)也可以2、对于菜单本身不希望在点击它时将自己隐藏,需要为菜单本身的点击事件添加以下方法,用来阻止点击事件的传播。 //在所有不想触发页面点击事件的地方 阻止冒泡。 $('#menucontainer').click(function(event){event.stopPropagation();}); 忘记哪里转的了 sorry 阅读全文
摘要:
1 select top 3 Date1 from2 (3 select distinct Date1 from TableName where Date1 > '2013-5-1'4 )A --这里加个A,B,C随便你 或者as XXX相当于括号里面的子查询,我们把他视为一个表,要给这个表起个别名,不然他没名字的 阅读全文
摘要:
1 function getDaysInMonth(month, year) {2 var daysInMonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; //主要处理二月份的天数 3 if ((month == 1) && (year % 4 == 0) && ((year % 100 != 0) || (year % 400 == 0))) {4 return 29;5 } else {6 return daysI... 阅读全文
摘要:
Page_Init The Page_Init event is the first to occur when an ASP.NET page is executed. This is where you perform any initialization steps that you need to set up or create instances of server controls. You can't access controls in this event because there is no guarantee that they have been creat 阅读全文
摘要:
过Web开发的朋友相信都使用过富文本编辑器,比较出名的CuteEditor和CKEditor很多人应该已经使用过,在功能强大的同时需要加载的东西也变得很多。下面要推荐的两款富文本编辑器都是使用JS编写,使用简单,非常轻量级。 NicEditor NicEdit是一个轻量级,跨平台的Inline Co 阅读全文
摘要:
public static string objRequest(string requestName) { object obj = HttpContext.Current.Request[requestName]; return (obj != null) ? Convert.ToString(o 阅读全文
摘要:
void ShowAgeSum(string team,params int[] ages){ int ageSum=0; for (int i=0; i<ages.length; i++) { ageSum+= ages[i]; } }params 关键字是定制ParamArrayAttribute的缩写, 提示编译器实现对参数数组封装,将可变目的控制由编译器完成1:修饰的必须是一维数组,通常以集群方式来实现多个或者任意多个参数的控制,数组是最简单的选择;2:修饰的数组可以是... 阅读全文
摘要:
string strConn = ""; if (extension == ".xlsx") { strConn = "Provider=Microsoft.Ace.OleDb.12.0;Data Source='" + excelPath + "';Extended Properties='Excel 12.0;IMEX=1'"; // 07+ } else if (extension == ".xls") { ... 阅读全文
摘要:
DateTime dt0 = DateTime.Now; //周几 N string dt1 = dt0.AddDays(N - (int)dt0.DayOfWeek).ToShortDateString();//思路:通过dt0.DayOfWeek属性 获取当天为星期几,然后计算和所要求星期几和今天日期的差//,最后通过AddDays方法得到。 阅读全文
摘要:
with mytable as (select * ,Row_Number() over (order by UserId asc) as Row from T_User ) //WITH AS短语,也叫做子查询部分,Row为新列(排序行号) select * from mytable where 阅读全文