Hello World!
摘要: /***2005以上版本有效***/CREATE procedure [dbo].[GetFolderChilds]( @folderid uniqueidentifier)asbeginwith T as(SELECT * FROm Doc_Folder where FolderID = @folderidunion allselect a.* from Doc_Folder a join T b on a.ParentFolderID = b.FolderID)select * from Tendreturn GO 阅读全文
posted @ 2012-08-03 18:11 世界万物 阅读(225) 评论(0) 推荐(0) 编辑
摘要: (function ($) { $.fn.extend({ Scroll: function (opt, callback) { //参数初始化 if (!opt) var opt = {}; var _this = this.eq(0).find("ul:first"); var lineH = _this.find("li:first").height(), //获取行高 line = op... 阅读全文
posted @ 2012-08-03 11:25 世界万物 阅读(995) 评论(3) 推荐(0) 编辑
摘要: <style type="text/css"> .d1 { width: 120px; height: 360px; background: #ccc; position: fixed; top: 120px; left: 10px; } .d2 { width: 120px; height: 360px; background:... 阅读全文
posted @ 2012-08-03 11:21 世界万物 阅读(265) 评论(0) 推荐(0) 编辑
摘要: (function ($) { var _a = window.navigator.userAgent.toLowerCase(); var isIE = _a.indexOf("msie") > -1; var isIE6 = _a.indexOf("msie 6.0") > -1; var isIE7 = _a.indexOf("msie 7.0") > -1; var isIE8 = _a.indexOf("msie 8.0") > -1; var i... 阅读全文
posted @ 2012-08-03 11:15 世界万物 阅读(372) 评论(0) 推荐(0) 编辑
Bye World!