<?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>评论：《JavaScript语言精粹》</title>
	<atom:link href="http://dancewithnet.com/2009/04/02/javascript-the-good-parts/feed/" rel="self" type="application/rss+xml" />
	<link>http://dancewithnet.com/2009/04/02/javascript-the-good-parts/</link>
	<description>WEB Design{HTML:CSS:Javascript:DOM:AJAX:PHP:Usability}/Viewpoint/Photo/Food/Mood</description>
	<lastBuildDate>Fri, 04 May 2012 20:16:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>来自：阿牛</title>
		<link>http://dancewithnet.com/2009/04/02/javascript-the-good-parts/comment-page-1/#comment-422420</link>
		<dc:creator>阿牛</dc:creator>
		<pubDate>Sun, 18 Sep 2011 14:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2009/04/02/javascript-the-good-parts/#comment-422420</guid>
		<description>楼主，你用的什么字体好，很好看</description>
		<content:encoded><![CDATA[<p>楼主，你用的什么字体好，很好看</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：web前端寒风</title>
		<link>http://dancewithnet.com/2009/04/02/javascript-the-good-parts/comment-page-1/#comment-391401</link>
		<dc:creator>web前端寒风</dc:creator>
		<pubDate>Fri, 12 Aug 2011 02:12:42 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2009/04/02/javascript-the-good-parts/#comment-391401</guid>
		<description>抽时间去看看</description>
		<content:encoded><![CDATA[<p>抽时间去看看</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：开发跨浏览器JavaScript时要注意的问题 &#171; DDD的一亩三分地</title>
		<link>http://dancewithnet.com/2009/04/02/javascript-the-good-parts/comment-page-1/#comment-225791</link>
		<dc:creator>开发跨浏览器JavaScript时要注意的问题 &#171; DDD的一亩三分地</dc:creator>
		<pubDate>Sat, 30 Jan 2010 13:54:11 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2009/04/02/javascript-the-good-parts/#comment-225791</guid>
		<description>[...] 顺便推荐一本JavaScript书《JavaScript语言精粹 》，是大名鼎鼎的&#8220;O&#8217;Reilly&#8221;系列，我只看了试读的第一章节，斗胆推荐 在随网之舞的《JavaScript语言精粹》 @ 随网之舞有更详细的介绍。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 顺便推荐一本JavaScript书《JavaScript语言精粹 》，是大名鼎鼎的&ldquo;O&#8217;Reilly&rdquo;系列，我只看了试读的第一章节，斗胆推荐 在随网之舞的《JavaScript语言精粹》 @ 随网之舞有更详细的介绍。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：crossyou</title>
		<link>http://dancewithnet.com/2009/04/02/javascript-the-good-parts/comment-page-1/#comment-222808</link>
		<dc:creator>crossyou</dc:creator>
		<pubDate>Thu, 10 Dec 2009 12:00:57 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2009/04/02/javascript-the-good-parts/#comment-222808</guid>
		<description>这本书 确实 不在 已在 卓越上 网购了，呵呵</description>
		<content:encoded><![CDATA[<p>这本书 确实 不在 已在 卓越上 网购了，呵呵</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Autry</title>
		<link>http://dancewithnet.com/2009/04/02/javascript-the-good-parts/comment-page-1/#comment-214619</link>
		<dc:creator>Autry</dc:creator>
		<pubDate>Thu, 03 Sep 2009 17:02:46 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2009/04/02/javascript-the-good-parts/#comment-214619</guid>
		<description>原版代码如下：
&lt;pre&gt;&lt;code&gt;// BETTER EXAMPLE

// Make a function that assigns event handler functions to 
// an array of nodes the right way.
// When you click on a node, an alert box 
// will display the ordinal of the node.

var add_the_handlers = function (nodes) {
    var i;
    for (i = 0; i &lt; nodes.length; i += 1) {
        nodes[i].onclick = function (i) {
            return function (e) {
                alert(i);
            };
        }(i);
    }
};&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>原版代码如下：</p>
<pre><code>// BETTER EXAMPLE

// Make a function that assigns event handler functions to
// an array of nodes the right way.
// When you click on a node, an alert box
// will display the ordinal of the node.

var add_the_handlers = function (nodes) {
    var i;
    for (i = 0; i &lt; nodes.length; i += 1) {
        nodes[i].onclick = function (i) {
            return function (e) {
                alert(i);
            };
        }(i);
    }
};</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>来自：秦歌</title>
		<link>http://dancewithnet.com/2009/04/02/javascript-the-good-parts/comment-page-1/#comment-214491</link>
		<dc:creator>秦歌</dc:creator>
		<pubDate>Tue, 01 Sep 2009 13:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2009/04/02/javascript-the-good-parts/#comment-214491</guid>
		<description>@zy：您的修改意思上对的，但是也有一个小遗漏，就是nodes​.​onclick应该是nodes​[i].​onclick。谢谢turing同学给的原版代码是对的，中文版在排版的时候出错了，我们会联系出版社在再版的时候能有修改过来。</description>
		<content:encoded><![CDATA[<p>@zy：您的修改意思上对的，但是也有一个小遗漏，就是nodes​.​onclick应该是nodes​[i].​onclick。谢谢turing同学给的原版代码是对的，中文版在排版的时候出错了，我们会联系出版社在再版的时候能有修改过来。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：turing</title>
		<link>http://dancewithnet.com/2009/04/02/javascript-the-good-parts/comment-page-1/#comment-214377</link>
		<dc:creator>turing</dc:creator>
		<pubDate>Tue, 01 Sep 2009 09:18:02 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2009/04/02/javascript-the-good-parts/#comment-214377</guid>
		<description>原版代码如下：
&lt;pre&gt;&lt;code&gt;// BETTER EXAMPLE

// Make a function that assigns event handler functions to 
// an array of nodes the right way.
// When you click on a node, an alert box 
// will display the ordinal of the node.

var add_the_handlers = function (nodes) {
    var i;
    for (i = 0; i &lt; nodes.length; i += 1) {
        nodes[i].onclick = function (i) {
            return function (e) {
                alert(i);
            };
        }(i);
    }
};&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>原版代码如下：</p>
<pre><code>// BETTER EXAMPLE

// Make a function that assigns event handler functions to
// an array of nodes the right way.
// When you click on a node, an alert box
// will display the ordinal of the node.

var add_the_handlers = function (nodes) {
    var i;
    for (i = 0; i &lt; nodes.length; i += 1) {
        nodes[i].onclick = function (i) {
            return function (e) {
                alert(i);
            };
        }(i);
    }
};</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>来自：zy</title>
		<link>http://dancewithnet.com/2009/04/02/javascript-the-good-parts/comment-page-1/#comment-203219</link>
		<dc:creator>zy</dc:creator>
		<pubDate>Tue, 21 Jul 2009 04:32:34 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2009/04/02/javascript-the-good-parts/#comment-203219</guid>
		<description>P39页中的函数存在错误,是不是应该修改如下： 
&lt;pre&gt;&lt;code&gt;var add_the_handles=function(nodes){
        var i;
        for(i=0;i&lt;nodes.length;i++){
            nodes.onclick=function(e){
                return function(){
                    alert(e);
                };
            }(i);
        };
    };&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>P39页中的函数存在错误,是不是应该修改如下： </p>
<pre><code>var add_the_handles=function(nodes){
        var i;
        for(i=0;i&lt;nodes.length;i++){
            nodes.onclick=function(e){
                return function(){
                    alert(e);
                };
            }(i);
        };
    };</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>来自：mage</title>
		<link>http://dancewithnet.com/2009/04/02/javascript-the-good-parts/comment-page-1/#comment-202671</link>
		<dc:creator>mage</dc:creator>
		<pubDate>Fri, 17 Jul 2009 07:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2009/04/02/javascript-the-good-parts/#comment-202671</guid>
		<description>秦歌回复好快啊，我现在在做基于YUI的项目，所以最近也在学习使用YUI2.7，也是在网站上搜索YUI找到了你的blog，感觉用惯了jquery再用YUI稍微有一些别扭，不过还好两三天算是有所了解了。

我喜欢这种黑底的网站，和我vim配色差不多，

还有回复秦歌一下，你说我真仔细，我很高兴，我觉得前端工程师仔细认真也是非常重要的，呵呵，说的有点严肃了啊，哈哈，我是一个性格活泼的JavaScript爱好者，爱开点玩笑。我昨天订了这本书，估计下周一能送到，继续学习，继续关注你的blog。</description>
		<content:encoded><![CDATA[<p>秦歌回复好快啊，我现在在做基于YUI的项目，所以最近也在学习使用YUI2.7，也是在网站上搜索YUI找到了你的blog，感觉用惯了jquery再用YUI稍微有一些别扭，不过还好两三天算是有所了解了。</p>
<p>我喜欢这种黑底的网站，和我vim配色差不多，</p>
<p>还有回复秦歌一下，你说我真仔细，我很高兴，我觉得前端工程师仔细认真也是非常重要的，呵呵，说的有点严肃了啊，哈哈，我是一个性格活泼的JavaScript爱好者，爱开点玩笑。我昨天订了这本书，估计下周一能送到，继续学习，继续关注你的blog。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：秦歌</title>
		<link>http://dancewithnet.com/2009/04/02/javascript-the-good-parts/comment-page-1/#comment-202510</link>
		<dc:creator>秦歌</dc:creator>
		<pubDate>Thu, 16 Jul 2009 14:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2009/04/02/javascript-the-good-parts/#comment-202510</guid>
		<description>@mage：你看的真仔细啊，我站点的图是来自豆瓣http://www.douban.com/subject/3590768/，这个图出现的比较早，的确不是后来《JavaScript语言精粹》的真实的封面。两者的区别是YAHOO!press的位置，豆瓣的是在左下角，真实的是在左上角，我现在已经修正过来了。</description>
		<content:encoded><![CDATA[<p>@mage：你看的真仔细啊，我站点的图是来自豆瓣http://www.douban.com/subject/3590768/，这个图出现的比较早，的确不是后来《JavaScript语言精粹》的真实的封面。两者的区别是YAHOO!press的位置，豆瓣的是在左下角，真实的是在左上角，我现在已经修正过来了。</p>
]]></content:encoded>
	</item>
</channel>
</rss>

