摘要:
/***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 阅读全文
摘要:
(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... 阅读全文
摘要:
<style type="text/css"> .d1 { width: 120px; height: 360px; background: #ccc; position: fixed; top: 120px; left: 10px; } .d2 { width: 120px; height: 360px; background:... 阅读全文
摘要:
(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... 阅读全文