<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: jQuery 让人恋恋不舍的秘密</title>
	<atom:link href="http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/feed/" rel="self" type="application/rss+xml" />
	<link>http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/</link>
	<description>关注用户体验、前端开发，记录生活点滴、岁月足迹。</description>
	<lastBuildDate>Fri, 30 Jul 2010 02:05:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: bones7456</title>
		<link>http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/comment-page-1/#comment-5026</link>
		<dc:creator>bones7456</dc:creator>
		<pubDate>Wed, 24 Mar 2010 04:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://lifesinger.org/blog/?p=2396#comment-5026</guid>
		<description>哈哈，看来web开发也是挺好玩的~</description>
		<content:encoded><![CDATA[<p>哈哈，看来web开发也是挺好玩的~</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 沙加</title>
		<link>http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/comment-page-1/#comment-4987</link>
		<dc:creator>沙加</dc:creator>
		<pubDate>Thu, 18 Mar 2010 02:27:04 +0000</pubDate>
		<guid isPermaLink="false">http://lifesinger.org/blog/?p=2396#comment-4987</guid>
		<description>自从俺用过 Mootools 和最近的 Google Closure 之后越来越觉得jQuery不顺眼了，用它开发东西觉得很奇怪~~~还是适合做一些简单一些的东西吧。</description>
		<content:encoded><![CDATA[<p>自从俺用过 Mootools 和最近的 Google Closure 之后越来越觉得jQuery不顺眼了，用它开发东西觉得很奇怪~~~还是适合做一些简单一些的东西吧。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 痴灵</title>
		<link>http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/comment-page-1/#comment-4944</link>
		<dc:creator>痴灵</dc:creator>
		<pubDate>Tue, 16 Mar 2010 15:02:55 +0000</pubDate>
		<guid isPermaLink="false">http://lifesinger.org/blog/?p=2396#comment-4944</guid>
		<description>JQ是我接触的第一个库，之后开始学习YUI，可能是JQ接触不多，所以学习YUI基本没有什么不习惯的。

YUI的确是很强大，做大型一点的东西来说，YUI的管理能力还是很强大的。

反而YUI3的变化让习惯YUI2的同学会有点不习惯。</description>
		<content:encoded><![CDATA[<p>JQ是我接触的第一个库，之后开始学习YUI，可能是JQ接触不多，所以学习YUI基本没有什么不习惯的。</p>
<p>YUI的确是很强大，做大型一点的东西来说，YUI的管理能力还是很强大的。</p>
<p>反而YUI3的变化让习惯YUI2的同学会有点不习惯。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lifesinger</title>
		<link>http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/comment-page-1/#comment-4550</link>
		<dc:creator>lifesinger</dc:creator>
		<pubDate>Fri, 19 Feb 2010 11:30:18 +0000</pubDate>
		<guid isPermaLink="false">http://lifesinger.org/blog/?p=2396#comment-4550</guid>
		<description>@yuan: 目前 jquery 在 github 上的源码阅读起来挺清爽，并不复杂。</description>
		<content:encoded><![CDATA[<p>@yuan: 目前 jquery 在 github 上的源码阅读起来挺清爽，并不复杂。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yuan</title>
		<link>http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/comment-page-1/#comment-4543</link>
		<dc:creator>yuan</dc:creator>
		<pubDate>Thu, 18 Feb 2010 02:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://lifesinger.org/blog/?p=2396#comment-4543</guid>
		<description>我觉得正是因为jQuery的API如此强大，导致它的源代码过于复杂，比较难读。JS又没有方法重载这一说，又要处理很多不同种参数的情况。
还有jQuery写扩展写组件比较不爽，要去遵守它的一些规定，比如方法必需返回jQuery对象以便链式调用。就为了这个链式调用，还要pushStack之类的操作。
还有，jQuery里一切都是jQuery对象，但不同的html元素适用的方法又不同，这又导致了在写一些方法的开头，总要去判断一些东西，例如元素标签之类的……

总之，我觉得jQuery也就是用起来很爽，读代码和写扩展非常的不爽。</description>
		<content:encoded><![CDATA[<p>我觉得正是因为jQuery的API如此强大，导致它的源代码过于复杂，比较难读。JS又没有方法重载这一说，又要处理很多不同种参数的情况。<br />
还有jQuery写扩展写组件比较不爽，要去遵守它的一些规定，比如方法必需返回jQuery对象以便链式调用。就为了这个链式调用，还要pushStack之类的操作。<br />
还有，jQuery里一切都是jQuery对象，但不同的html元素适用的方法又不同，这又导致了在写一些方法的开头，总要去判断一些东西，例如元素标签之类的……</p>
<p>总之，我觉得jQuery也就是用起来很爽，读代码和写扩展非常的不爽。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hugo</title>
		<link>http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/comment-page-1/#comment-4373</link>
		<dc:creator>Hugo</dc:creator>
		<pubDate>Fri, 05 Feb 2010 14:49:17 +0000</pubDate>
		<guid isPermaLink="false">http://lifesinger.org/blog/?p=2396#comment-4373</guid>
		<description>Jq确实很强大，刚接触就被它的独特之处吸引了，强大的选择器，让你很轻松的控制页面上的每个元素变化。</description>
		<content:encoded><![CDATA[<p>Jq确实很强大，刚接触就被它的独特之处吸引了，强大的选择器，让你很轻松的控制页面上的每个元素变化。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wolfv</title>
		<link>http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/comment-page-1/#comment-4231</link>
		<dc:creator>wolfv</dc:creator>
		<pubDate>Wed, 27 Jan 2010 03:36:51 +0000</pubDate>
		<guid isPermaLink="false">http://lifesinger.org/blog/?p=2396#comment-4231</guid>
		<description>&quot;老婆说，要睡觉了，就不码字了&quot;这个不要往外说哦
^v^.</description>
		<content:encoded><![CDATA[<p>&#8220;老婆说，要睡觉了，就不码字了&#8221;这个不要往外说哦<br />
^v^.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lifesinger</title>
		<link>http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/comment-page-1/#comment-4189</link>
		<dc:creator>lifesinger</dc:creator>
		<pubDate>Sun, 24 Jan 2010 14:52:37 +0000</pubDate>
		<guid isPermaLink="false">http://lifesinger.org/blog/?p=2396#comment-4189</guid>
		<description>@yoom: 从基础学起，建议看 YUI 官方的文档，一步一步学习。</description>
		<content:encoded><![CDATA[<p>@yoom: 从基础学起，建议看 YUI 官方的文档，一步一步学习。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yoom</title>
		<link>http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/comment-page-1/#comment-4188</link>
		<dc:creator>yoom</dc:creator>
		<pubDate>Sun, 24 Jan 2010 13:51:35 +0000</pubDate>
		<guid isPermaLink="false">http://lifesinger.org/blog/?p=2396#comment-4188</guid>
		<description>我现在只会用原生的getElementById这些DOM
这句话说错了，请删除之，应该是：
我现在只会用原生的getElementById这些方法来操作DOM</description>
		<content:encoded><![CDATA[<p>我现在只会用原生的getElementById这些DOM<br />
这句话说错了，请删除之，应该是：<br />
我现在只会用原生的getElementById这些方法来操作DOM</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yoom</title>
		<link>http://lifesinger.org/blog/2010/01/the-beauty-of-jquery-api/comment-page-1/#comment-4187</link>
		<dc:creator>yoom</dc:creator>
		<pubDate>Sun, 24 Jan 2010 13:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://lifesinger.org/blog/?p=2396#comment-4187</guid>
		<description>最近强迫自己开始学习yui2，但发现这好像是专为js功力较深的人准备。

我现在只会用原生的getElementById这些DOM，对jquery比较熟悉，也能完成一些基础的交互和组件制作，并能考虑到重用性和html的分离，突然用yui来模拟以前的程序，似乎无从下手。我以为加载了dom.js，就能很方便的操作dom了，但总是提示这里那里出错，汗。。。。。yui的各种js文件分类倒是详细，可我却不知道再怎么组织起来了。

比如dom.js和event.js，我以为同时加载后就能替代 yahoo-dom-event.js，可不行。 

博主有些什么好的建议么？可否有什么好的建议呢？我必须学yui2了，为来年的工作做准备。

yui2看的我一头雾水。</description>
		<content:encoded><![CDATA[<p>最近强迫自己开始学习yui2，但发现这好像是专为js功力较深的人准备。</p>
<p>我现在只会用原生的getElementById这些DOM，对jquery比较熟悉，也能完成一些基础的交互和组件制作，并能考虑到重用性和html的分离，突然用yui来模拟以前的程序，似乎无从下手。我以为加载了dom.js，就能很方便的操作dom了，但总是提示这里那里出错，汗。。。。。yui的各种js文件分类倒是详细，可我却不知道再怎么组织起来了。</p>
<p>比如dom.js和event.js，我以为同时加载后就能替代 yahoo-dom-event.js，可不行。 </p>
<p>博主有些什么好的建议么？可否有什么好的建议呢？我必须学yui2了，为来年的工作做准备。</p>
<p>yui2看的我一头雾水。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
