2013年8月12日

基本滤镜juery选择器

摘要: $("tr:first")表格的第一行$("tr:last")表格的最后一行;$("tr:even")表格的单行;$("tr:odd")表格的偶行;$("tr:eq(1)")表格的第二行.$("tr:lt(2)")表格的前二行,不包含第三行.返回的是一个juery对象数组;$("tr:gt(2)")表格第三行之后的所有行.返回的是一个juery对象数组;$("td:empty")匹配所有不包含子元素或文本的空单元格$("td: 阅读全文

posted @ 2013-08-12 23:16 独孤求爱 阅读(135) 评论(0) 推荐(0) 编辑

2013年8月11日

css常用语法一 从头学jquery

摘要: 一 css选择器:1.通配选择器:*;* {margin:0;padding:0;} 上面定义把所有元素的边距(margin)和补白(padding)定义为0,这是我们一般做网站写css的第一句; 通配选择器也可以定义某元素下面的所有元素;如 div#content* {...} div 层下面id为content下面的所有元素.2.标签选择器p {....}3.ID选择器#content {......}4.类选择器.contet {.....}5后代选择器li strong {.....} div span {.....} div .content {......}6子元素选择器和后代.. 阅读全文

posted @ 2013-08-11 22:49 独孤求爱 阅读(143) 评论(0) 推荐(0) 编辑

博客开通么久了,一值没有内空.

摘要: 最近做企业站,要用到Jquery,看过之后,才知道这个和css是密切相关的,所以把看到的一些基本的css语法留下来,以方便大家和自己以后使用. 阅读全文

posted @ 2013-08-11 22:38 独孤求爱 阅读(98) 评论(0) 推荐(0) 编辑

2013年4月18日

Hashtable 类

摘要: Hashtable 类表示键/值对的集合,这些键/值对根据键的哈希代码进行组织。命名空间:System.Collections程序集:mscorlib(在 mscorlib.dll 中)using System;using System.Collections;class Example{ public static void Main() { // Create a new hash table. // Hashtable openWith = new Hashtable(); // Add some ele... 阅读全文

posted @ 2013-04-18 09:22 独孤求爱 阅读(175) 评论(0) 推荐(0) 编辑

2013年4月17日

DispatcherTimer 使用方法

摘要: 命名空间: System.Windows.ThreadingDispatcherTimer 类:集成到按指定时间间隔和指定优先级处理的 Dispatcher 队列中的计时器。DispatcherTimer dispatcherTimer = new DispatcherTimer();DispatcherTimer.Tick 事件:超过计时器间隔时发生 dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick); dispatcherTimer.Interval = TimeSpan.FromMillise... 阅读全文

posted @ 2013-04-17 21:11 独孤求爱 阅读(700) 评论(0) 推荐(0) 编辑

导航