<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_小荷才露尖尖角</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/19330/rss</id><updated>2009-10-05T21:58:29Z</updated><author><name>滋心</name><uri>http://www.cnblogs.com/zixin/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/zixin/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/19330/rss"/><entry><id>http://www.cnblogs.com/zixin/archive/2009/10/06/1578344.html</id><title type="text">为hover事件加上延迟</title><summary type="text">在JQuery中hover事件无法设定鼠标移入、移出时延迟多久触发时间，这样的话，如果用户只是无意中用鼠标划过该节点时也仍然会触发事件可以采用hoverIntent插件代替hover事件下载地址：http://cherne.net/brian/resources/jquery.hoverIntent.html使用很简单，就不多说了，直接看主页的例子就OK</summary><published>2009-10-05T21:58:00Z</published><updated>2009-10-05T21:58:00Z</updated><author><name>滋心</name><uri>http://www.cnblogs.com/zixin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/zixin/archive/2009/10/06/1578344.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/zixin/archive/2009/10/06/1578344.html"/></entry><entry><id>http://www.cnblogs.com/zixin/archive/2009/08/29/1556249.html</id><title type="text">面向对象的JavaScript（2）闭包</title><summary type="text">在讨论私有属性和方法的实现之前，我们先了解一下Javascript中的一个概念&amp;#8220;闭包&amp;#8221;什么是&amp;#8220;闭包&amp;#8221;呢？我们先来看一个例子[代码]a是定义在函数Class1中私有变量，但是我们可以通过Class2访问它，这个比较好理解，但是如果我们是在Class1的外部来调用Class2呢？[代码]我们可以看到它仍然能够访问变量a从上面的例子可以看到在JavaScr...</summary><published>2009-08-29T04:32:00Z</published><updated>2009-08-29T04:32:00Z</updated><author><name>滋心</name><uri>http://www.cnblogs.com/zixin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/zixin/archive/2009/08/29/1556249.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/zixin/archive/2009/08/29/1556249.html"/></entry><entry><id>http://www.cnblogs.com/zixin/archive/2009/08/27/1555151.html</id><title type="text">面向对象的JavaScript（1）：创建简单的类</title><summary type="text">我们以Book类为例，Book类有三个属性：书号、标题、作者[代码]这样一个简单的Book类就创建好了我们可以这样实例化这个类[代码]上面的类有一个问题，我们在实例化时，并没有对ISBN 属性进行数据完整性验证，我们修改一下上面的那个类[代码]现在情况看起来有所改善了，我们在实例化对象时对ISBN属性进行有效性检查，如果不通过将抛出一个异常。但是，现在又出现一个问题了我们看[代码]我们现在可以在实...</summary><published>2009-08-27T08:38:00Z</published><updated>2009-08-27T08:38:00Z</updated><author><name>滋心</name><uri>http://www.cnblogs.com/zixin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/zixin/archive/2009/08/27/1555151.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/zixin/archive/2009/08/27/1555151.html"/></entry><entry><id>http://www.cnblogs.com/zixin/archive/2009/05/13/1455807.html</id><title type="text">JQuery画细线表格</title><summary type="text">工作需要，要个Table画细线表格，如果用表格的Border属性呢，样式是立体的，不太好看，而且如果表格嵌套的话，里面的表格的外边框会比较粗，所以自己写了个JQuery的插件，可以画带外边框的细线表格和不带外边框的细线表格插件代码：[代码]CSS：[代码]调用： [代码][代码]已知的问题：如果表格中的td用到rowspan标记，会有问题，目前的替代做法是，用嵌套表格来实现（以解决）如果表格中有t...</summary><published>2009-05-13T04:50:00Z</published><updated>2009-05-13T04:50:00Z</updated><author><name>滋心</name><uri>http://www.cnblogs.com/zixin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/zixin/archive/2009/05/13/1455807.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/zixin/archive/2009/05/13/1455807.html"/></entry><entry><id>http://www.cnblogs.com/zixin/archive/2009/04/20/1439807.html</id><title type="text">自定义控件验证页面所有文本框</title><summary type="text">需求：有几个表单，文本框贼多，要给这些文本框加验证网上找了个JS验证的函数[代码]本来想在保存按钮上加 OnClientClick="return checkAllTextValid()"发现这样的话，这个页面的验证控件都不起效了，要自己一个一个文本框的去拖验证控件又太烦，决定自己扩展验证控件[代码]CustomValidator控件用到的JS方法[代码]这样只要给要验证的页面放上&amp;lt;cc1:...</summary><published>2009-04-20T09:08:00Z</published><updated>2009-04-20T09:08:00Z</updated><author><name>滋心</name><uri>http://www.cnblogs.com/zixin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/zixin/archive/2009/04/20/1439807.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/zixin/archive/2009/04/20/1439807.html"/></entry><entry><id>http://www.cnblogs.com/zixin/archive/2008/07/13/1241876.html</id><title type="text">LinQ in Action 笔记三：Hello LINQ to SQL </title><summary type="text">要使用LINQ to SQL要完成以下几个步骤1、先将数据库的表映射一个实体类[代码]2、实例化 DataContext，DataContext主要是建立SQL与数据库之间的映射[代码]3、和其他一样了，查询和显示[代码]</summary><published>2008-07-13T07:33:00Z</published><updated>2008-07-13T07:33:00Z</updated><author><name>滋心</name><uri>http://www.cnblogs.com/zixin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/zixin/archive/2008/07/13/1241876.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/zixin/archive/2008/07/13/1241876.html"/></entry><entry><id>http://www.cnblogs.com/zixin/archive/2008/07/05/1236105.html</id><title type="text">LinQ in Action 笔记二：Hello LINQ to XML</title><summary type="text">这一次，我们来看一下如果使用LinQ来查询和创建XML我们有一个book类：[代码]我们实例化一个book的集合[代码]如果我们现在想将Year== 2006的集合创建成以下XML格式[代码]按照传统的方式，我们将如何实现呢？[代码]如果我们采用LinQ：[代码]有没有发现，代码量减少了好多，而且结构更加清晰了，如果你的换行和缩进排版比较规范的话，你甚至能直观的从代码中看出XML的结构层次</summary><published>2008-07-04T21:52:00Z</published><updated>2008-07-04T21:52:00Z</updated><author><name>滋心</name><uri>http://www.cnblogs.com/zixin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/zixin/archive/2008/07/05/1236105.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/zixin/archive/2008/07/05/1236105.html"/></entry><entry><id>http://www.cnblogs.com/zixin/archive/2008/07/04/1235938.html</id><title type="text">LinQ in Action 笔记一、Hello LINQ to Objects</title><summary type="text">LinQ可以方便的查询对象集合先来一个简单的例子[代码]结果[代码]当然，你也可以用传统的方式实现他[代码]那么，我们为什么还要采用LinQ呢？想一下，如果我们按照以下格式显示结果呢？[代码]需要按照字数分组并排序，如果使用传统的方法将是很痛苦的一件事如果我们采用LinQ来查询将很简单[代码]</summary><published>2008-07-04T12:56:00Z</published><updated>2008-07-04T12:56:00Z</updated><author><name>滋心</name><uri>http://www.cnblogs.com/zixin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/zixin/archive/2008/07/04/1235938.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/zixin/archive/2008/07/04/1235938.html"/></entry><entry><id>http://www.cnblogs.com/zixin/archive/2007/03/20/679304.html</id><title type="text">JQuery选择器插件  Extra selectors</title><summary type="text">1、:modified 所有value 值修改过的元素（在页面加载后）只支持&amp;lt;INPUT&amp;gt;, &amp;lt;TEXTAREA&amp;gt; or &amp;lt;SELECT&amp;gt;元素2、:focus 查找当前焦点所在的元素3、:blur 查找刚刚离开焦点的元素4、:hover 查找鼠标下面的元素5、:input 查找&amp;lt;INPUT&amp;gt;, &amp;lt;TEXTAREA&amp;gt;, &amp;lt;SELECT...</summary><published>2007-03-20T01:59:00Z</published><updated>2007-03-20T01:59:00Z</updated><author><name>滋心</name><uri>http://www.cnblogs.com/zixin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/zixin/archive/2007/03/20/679304.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/zixin/archive/2007/03/20/679304.html"/></entry><entry><id>http://www.cnblogs.com/zixin/archive/2007/03/16/677548.html</id><title type="text">JQuery选择器</title><summary type="text">JQuery选择器是CSS1-3、XPath的结合物支持以下CSS查询器的语法1、* 任何元素示例：Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--&amp;gt;//选择所有元素$("*");2、E 所有类型为E的元素示例：Code highlighting pro...</summary><published>2007-03-16T15:13:00Z</published><updated>2007-03-16T15:13:00Z</updated><author><name>滋心</name><uri>http://www.cnblogs.com/zixin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/zixin/archive/2007/03/16/677548.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/zixin/archive/2007/03/16/677548.html"/></entry></feed>
