博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2009年7月27日

摘要: .3版本的新特性,来看看究竟有什么用处jQuery.Event = function( src ){ // Allow instantiation without the 'new' keyword // 允许初始化实例不需要new if( !this.preventDefault ) return new jQuery.Event(src); // Event object // 事件对象存... 阅读全文

posted @ 2009-07-27 22:54 linFen 阅读(583) 评论(0) 推荐(0)

摘要: 概念: 排列: P(n,r) 从n个中选r个进行排列(与顺序有关) 组合: C(n,r) 从n个中选r个进行组合(与顺序无关) create procedure sp_test(@n int,@r int) as begin if isnull(@n,0)<isnull(@r,0) return set rowcount @n select identity(int,1,1) ... 阅读全文

posted @ 2009-07-27 17:32 linFen 阅读(506) 评论(0) 推荐(0)