<?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>“陈超群’s Blog” 的评论</title>
	<atom:link href="http://www.51jquery.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.51jquery.com</link>
	<description>活着，开心最重要！</description>
	<lastBuildDate>Fri, 07 May 2010 11:44:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>crusher 关于 我们这一代 的评论</title>
		<link>http://www.51jquery.com/2009-12/our-generation/comment-page-1/#comment-693</link>
		<dc:creator>crusher</dc:creator>
		<pubDate>Fri, 07 May 2010 11:44:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.51jquery.com/2009-12/%e6%88%91%e4%bb%ac%e8%bf%99%e4%b8%80%e4%bb%a3/#comment-693</guid>
		<description>我们这一代总会羡慕下一代。</description>
		<content:encoded><![CDATA[<p>我们这一代总会羡慕下一代。</p>
]]></content:encoded>
	</item>
	<item>
		<title>wsenmin 关于 javascript中实现反射 的评论</title>
		<link>http://www.51jquery.com/2009-09/reflection-in-javascript/comment-page-1/#comment-615</link>
		<dc:creator>wsenmin</dc:creator>
		<pubDate>Tue, 06 Apr 2010 09:26:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.51jquery.com/?p=511#comment-615</guid>
		<description>是比较引用么</description>
		<content:encoded><![CDATA[<p>是比较引用么</p>
]]></content:encoded>
	</item>
	<item>
		<title>wsenmin 关于 javascript中实现反射 的评论</title>
		<link>http://www.51jquery.com/2009-09/reflection-in-javascript/comment-page-1/#comment-614</link>
		<dc:creator>wsenmin</dc:creator>
		<pubDate>Tue, 06 Apr 2010 09:25:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.51jquery.com/?p=511#comment-614</guid>
		<description>不好意思 我搞错了 if (window[item] == “superman1″) 两个等于号就报错，请问三个等于号什么意思？？</description>
		<content:encoded><![CDATA[<p>不好意思 我搞错了 if (window[item] == “superman1″) 两个等于号就报错，请问三个等于号什么意思？？</p>
]]></content:encoded>
	</item>
	<item>
		<title>wsenmin 关于 javascript中实现反射 的评论</title>
		<link>http://www.51jquery.com/2009-09/reflection-in-javascript/comment-page-1/#comment-613</link>
		<dc:creator>wsenmin</dc:creator>
		<pubDate>Tue, 06 Apr 2010 09:23:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.51jquery.com/?p=511#comment-613</guid>
		<description>var name = &quot;superman&quot;;var key = (function() {    for (var item in window) {    
    if (window[item] === &quot;superman1&quot;)   //这样的话就报错
{            return item;        }    }})();alert(key);</description>
		<content:encoded><![CDATA[<p>var name = &#8220;superman&#8221;;var key = (function() {    for (var item in window) {<br />
    if (window[item] === &#8220;superman1&#8243;)   //这样的话就报错<br />
{            return item;        }    }})();alert(key);</p>
]]></content:encoded>
	</item>
	<item>
		<title>一些专业博客和技术网站收录 &#8211; 淄博信息港数据中心 - 技术组&#39;blog 关于 一些专业博客和技术网站收录 的评论</title>
		<link>http://www.51jquery.com/2009-07/website/comment-page-1/#comment-560</link>
		<dc:creator>一些专业博客和技术网站收录 &#8211; 淄博信息港数据中心 - 技术组&#39;blog</dc:creator>
		<pubDate>Wed, 10 Mar 2010 06:09:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.51jquery.com/?p=426#comment-560</guid>
		<description>[...] 一些专业博客和技术网站收录 2009年07月28日, 22:50 [...]</description>
		<content:encoded><![CDATA[<p>[...] 一些专业博客和技术网站收录 2009年07月28日, 22:50 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>胡杨 关于 javascript中实现反射 的评论</title>
		<link>http://www.51jquery.com/2009-09/reflection-in-javascript/comment-page-1/#comment-259</link>
		<dc:creator>胡杨</dc:creator>
		<pubDate>Thu, 07 Jan 2010 07:28:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.51jquery.com/?p=511#comment-259</guid>
		<description>var name = &quot;superman&quot;;var key = (function() {    for (var item in window) {        if (window[item] === &quot;superman&quot;) {            return item;        }    }})();alert(key);
建议改成这样~
var name = &quot;superman&quot;;var key = (function() {    for (var item in this) {        if (window[item] === &quot;superman&quot;) {            return item;        }    }})();alert(key);</description>
		<content:encoded><![CDATA[<p>var name = &#8220;superman&#8221;;var key = (function() {    for (var item in window) {        if (window[item] === &#8220;superman&#8221;) {            return item;        }    }})();alert(key);<br />
建议改成这样~<br />
var name = &#8220;superman&#8221;;var key = (function() {    for (var item in this) {        if (window[item] === &#8220;superman&#8221;) {            return item;        }    }})();alert(key);</p>
]]></content:encoded>
	</item>
	<item>
		<title>simaopig 关于 HTML默认样式和浏览器默认样式【笔记】 的评论</title>
		<link>http://www.51jquery.com/2009-04/html-default-style/comment-page-1/#comment-233</link>
		<dc:creator>simaopig</dc:creator>
		<pubDate>Thu, 17 Dec 2009 07:19:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.51jquery.com/2009-04/html%e9%bb%98%e8%ae%a4%e6%a0%b7%e5%bc%8f%e5%92%8c%e6%b5%8f%e8%a7%88%e5%99%a8%e9%bb%98%e8%ae%a4%e6%a0%b7%e5%bc%8f%e3%80%90%e7%ac%94%e8%ae%b0%e3%80%91/#comment-233</guid>
		<description>这个貌似看yahoo的css就可以了：http://l.yimg.com/a/lib/arc/core_1.0.2.css</description>
		<content:encoded><![CDATA[<p>这个貌似看yahoo的css就可以了：http://l.yimg.com/a/lib/arc/core_1.0.2.css</p>
]]></content:encoded>
	</item>
	<item>
		<title>simaopig 关于 代码大全PDF电子书下载 的评论</title>
		<link>http://www.51jquery.com/2009-05/code-complete-pdf/comment-page-1/#comment-232</link>
		<dc:creator>simaopig</dc:creator>
		<pubDate>Thu, 17 Dec 2009 07:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.51jquery.com/?p=369#comment-232</guid>
		<description>一样，下载了。。</description>
		<content:encoded><![CDATA[<p>一样，下载了。。</p>
]]></content:encoded>
	</item>
	<item>
		<title>simaopig 关于 javascript检测浏览器类型和版本 的评论</title>
		<link>http://www.51jquery.com/2009-09/javascript-browser/comment-page-1/#comment-217</link>
		<dc:creator>simaopig</dc:creator>
		<pubDate>Tue, 08 Dec 2009 08:31:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.51jquery.com/?p=468#comment-217</guid>
		<description>不错，不错，不过有的方法重复了。哈。第一个和倒数第二个。嗯。~~</description>
		<content:encoded><![CDATA[<p>不错，不错，不过有的方法重复了。哈。第一个和倒数第二个。嗯。~~</p>
]]></content:encoded>
	</item>
	<item>
		<title>创意无限 关于 软件开发最重要的一环 &#8211; 文档【转】 的评论</title>
		<link>http://www.51jquery.com/2009-09/developer-guide/comment-page-1/#comment-214</link>
		<dc:creator>创意无限</dc:creator>
		<pubDate>Mon, 07 Dec 2009 04:36:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.51jquery.com/?p=515#comment-214</guid>
		<description>从大学毕业设计，到现在的工作，文档确实很要求标准</description>
		<content:encoded><![CDATA[<p>从大学毕业设计，到现在的工作，文档确实很要求标准</p>
]]></content:encoded>
	</item>
</channel>
</rss>
