摘要: 1 select a.name 表名,b.name 列名 from sysobjects a,syscolumns b 2 where a.id=b.id and b.name='SortCode' and a.type='U' 阅读全文
posted @ 2015-02-25 14:00 JJ.Net 阅读(836) 评论(0) 推荐(0)
摘要: 1 $("#box").animate({height:"300px"}); 阅读全文
posted @ 2015-02-11 17:26 JJ.Net 阅读(130) 评论(0) 推荐(0)
摘要: 1 10 11 12 13 14 15 16 阅读全文
posted @ 2015-02-10 17:24 JJ.Net 阅读(248) 评论(0) 推荐(0)
摘要: 非常好用的Json 1 /// 2 /// 返回对应用户的部门信息 3 /// 4 /// 5 /// 6 public JsonResult GetOrg(string value) 7 { 8... 阅读全文
posted @ 2015-02-05 17:10 JJ.Net 阅读(348) 评论(0) 推荐(0)
摘要: 按照type获取对象 $(':checkbox') 按照标签获取对象 $("p") 阅读全文
posted @ 2015-02-03 14:12 JJ.Net 阅读(146) 评论(0) 推荐(0)
摘要: get() 方法获得由选择器指定的 DOM 元素。1 This is a paragraph1 1 $(selector).get(index) 阅读全文
posted @ 2015-02-03 14:00 JJ.Net 阅读(240) 评论(2) 推荐(0)
摘要: append() 方法在被选元素的结尾(仍然在内部)插入指定内容。1 $("p").append(" Hello world!");1 $(selector).append(function(index,html))appendTo() 方法在被选元素的结尾(仍然在内部)插入指定内容。1 $("He... 阅读全文
posted @ 2015-02-03 13:22 JJ.Net 阅读(185) 评论(0) 推荐(0)
摘要: placeholder 属性提供可描述输入字段预期值的提示信息(hint)。该提示会在输入字段为空时显示,并会在字段获得焦点时消失。1 placeholder 属性是 HTML5 中的新属性 阅读全文
posted @ 2015-02-03 12:01 JJ.Net 阅读(215) 评论(0) 推荐(0)
摘要: 1 object.style.position="absolute" 2 3 absolute 4 生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。 5 6 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 7 ... 阅读全文
posted @ 2015-01-27 17:38 JJ.Net 阅读(161) 评论(0) 推荐(0)
摘要: 1 返回属性值2 $(".mCSB_scrollTools").css("width");3 设置属性4 $(".mCSB_scrollTools").css("right", "200px");5 设置多个属性6 $("p").css({"background-color":"yellow","f... 阅读全文
posted @ 2015-01-27 17:12 JJ.Net 阅读(170) 评论(0) 推荐(0)