上一页 1 ··· 17 18 19 20 21
摘要: jQuery 1.3中新增的方法。给所有当前以及将来会匹配的元素绑定一个事件处理函数(比如click事件)。也能绑定自定义事件。 目前支持 click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup。 还不支持 blur, focus, mouseenter, mouseleave, change, submit ,与bind()不同的是,live()一次只能绑定一个事件。 这个方法跟传统的bind很像,区别在于用live来绑定事件会给所有当前以及将来在页面上的元素绑 阅读全文
posted @ 2011-04-13 16:17 Shikyoh 阅读(310) 评论(0) 推荐(0)
摘要: 一在PreRequestHandlerExecute 事件里边用DeflateStream修饰的Response.Filter替代Response.Filter public sealed class CompressionModule : IHttpModule { #region IHttpModule Members /// <summary> /// Disposes of the resources (other than memory) used by the module /// that implements <see cref="T:System. 阅读全文
posted @ 2011-04-12 12:12 Shikyoh 阅读(1099) 评论(0) 推荐(0)
摘要: csdn:http://hi.csdn.net/htl258 阅读全文
posted @ 2011-04-09 21:43 Shikyoh 阅读(250) 评论(0) 推荐(0)
摘要: 我们知道有个 SQL Server 2000 中有个 cross join 是用于交叉联接的。实际上增加 cross apply 和 outer apply 是用于交叉联接表值函数(返回表结果集的函数)的, 更重要的是这个函数的参数是另一个表中的字段。这个解释可能有些含混不请,请看下面的例子: -- 1. cross join 联接两个表select * from TABLE_1 as T1cross join TABLE_2 as T2-- 2. cross join 联接表和表值函数,表值函数的参数是个“常量”select * from TABLE_1 T1cross join FN_Ta 阅读全文
posted @ 2011-04-09 21:37 Shikyoh 阅读(1297) 评论(0) 推荐(0)
上一页 1 ··· 17 18 19 20 21