<?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/2007/12/04/a-javascript-module-pattern/feed/" rel="self" type="application/rss+xml" />
	<link>http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/</link>
	<description>WEB Design{HTML:CSS:Javascript:DOM:AJAX:PHP:Usability}/Viewpoint/Photo/Food/Mood</description>
	<lastBuildDate>Sat, 13 Mar 2010 07:52:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>来自：Physure.com &#187; [转]Javascript的匿名函数</title>
		<link>http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/comment-page-1/#comment-226295</link>
		<dc:creator>Physure.com &#187; [转]Javascript的匿名函数</dc:creator>
		<pubDate>Fri, 05 Feb 2010 16:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/#comment-226295</guid>
		<description>[...] 　　《Javascript的一种模块模式》中的第一句话就是“全局变量是魔鬼”。配合var关键字，匿名函数可以有效的保证在页面上写入Javascript，而不会造成全局变量的污染。这在给一个不是很熟悉的页面增加Javascript时非常有效，也很优美。实际上，YUI以及其相应的范例中大量使用匿名函数，其他的Javascript库中也不乏大量使用。 　　Javascript的函数式编程(functional programming)的基石。具体请看《用函数式编程技术编写优美的 JavaScript》和《函数式JavaScript编程指南》。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 　　《Javascript的一种模块模式》中的第一句话就是“全局变量是魔鬼”。配合var关键字，匿名函数可以有效的保证在页面上写入Javascript，而不会造成全局变量的污染。这在给一个不是很熟悉的页面增加Javascript时非常有效，也很优美。实际上，YUI以及其相应的范例中大量使用匿名函数，其他的Javascript库中也不乏大量使用。 　　Javascript的函数式编程(functional programming)的基石。具体请看《用函数式编程技术编写优美的 JavaScript》和《函数式JavaScript编程指南》。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Javascript的一种模块模式 - Yaohaixiao&#8217;s Blog - We design with web standards.</title>
		<link>http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/comment-page-1/#comment-204197</link>
		<dc:creator>Javascript的一种模块模式 - Yaohaixiao&#8217;s Blog - We design with web standards.</dc:creator>
		<pubDate>Thu, 06 Aug 2009 11:24:06 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/#comment-204197</guid>
		<description>[...] 作者：Douglas Crockford 原文：A javascript module pattern 翻译：随网之舞 [...]</description>
		<content:encoded><![CDATA[<p>[...] 作者：Douglas Crockford 原文：A javascript module pattern 翻译：随网之舞 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Javascript的匿名函数 &#124; CssRainBow.cn</title>
		<link>http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/comment-page-1/#comment-203216</link>
		<dc:creator>Javascript的匿名函数 &#124; CssRainBow.cn</dc:creator>
		<pubDate>Tue, 21 Jul 2009 01:41:54 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/#comment-203216</guid>
		<description>[...] 《Javascript的一种模块模式》中的第一句话就是“全局变量是魔鬼”。配合var关键字，匿名函数可以有效的保证在页面上写入Javascript，而不会造成全局变量的污染。这在给一个不是很熟悉的页面增加Javascript时非常有效，也很优美。实际上，YUI以及其相应的范例中大量使用匿名函数，其他的Javascript库中也不乏大量使用。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 《Javascript的一种模块模式》中的第一句话就是“全局变量是魔鬼”。配合var关键字，匿名函数可以有效的保证在页面上写入Javascript，而不会造成全局变量的污染。这在给一个不是很熟悉的页面增加Javascript时非常有效，也很优美。实际上，YUI以及其相应的范例中大量使用匿名函数，其他的Javascript库中也不乏大量使用。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：JavaScript的陷阱 &#171; RIA sky</title>
		<link>http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/comment-page-1/#comment-197360</link>
		<dc:creator>JavaScript的陷阱 &#171; RIA sky</dc:creator>
		<pubDate>Mon, 22 Jun 2009 07:48:59 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/#comment-197360</guid>
		<description>[...] 这个例子正式为了实现解决上一个陷阱“变量作用域”的最佳方案。匿名函数详细内容请看《Javascript的匿名函数》。YUI整个库只有YAHOO和YAHOO_config两个全局变量，它正是大量应用匿名函数和命名空间的方法来实现，具体请看《Javascript的一种模块模式》。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 这个例子正式为了实现解决上一个陷阱“变量作用域”的最佳方案。匿名函数详细内容请看《Javascript的匿名函数》。YUI整个库只有YAHOO和YAHOO_config两个全局变量，它正是大量应用匿名函数和命名空间的方法来实现，具体请看《Javascript的一种模块模式》。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Javascript的匿名函数 &#124; 可可虫</title>
		<link>http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/comment-page-1/#comment-163827</link>
		<dc:creator>Javascript的匿名函数 &#124; 可可虫</dc:creator>
		<pubDate>Fri, 06 Feb 2009 21:47:07 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/#comment-163827</guid>
		<description>[...] 《Javascript的一种模块模式》中的第一句话就是“全局变量是魔鬼”。配合var关键字，匿名函数可以有效的保证在页面上写入Javascript，而不会造成全局变量的污染。这在给一个不是很熟悉的页面增加Javascript时非常有效，也很优美。实际上，YUI以及其相应的范例中大量使用匿名函数，其他的Javascript库中也不乏大量使用。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 《Javascript的一种模块模式》中的第一句话就是“全局变量是魔鬼”。配合var关键字，匿名函数可以有效的保证在页面上写入Javascript，而不会造成全局变量的污染。这在给一个不是很熟悉的页面增加Javascript时非常有效，也很优美。实际上，YUI以及其相应的范例中大量使用匿名函数，其他的Javascript库中也不乏大量使用。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：匿名</title>
		<link>http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/comment-page-1/#comment-163454</link>
		<dc:creator>匿名</dc:creator>
		<pubDate>Mon, 12 Jan 2009 09:57:20 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/#comment-163454</guid>
		<description>垃圾</description>
		<content:encoded><![CDATA[<p>垃圾</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：JavaScript的陷阱 @ 随网之舞</title>
		<link>http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/comment-page-1/#comment-161588</link>
		<dc:creator>JavaScript的陷阱 @ 随网之舞</dc:creator>
		<pubDate>Mon, 27 Oct 2008 14:06:20 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/#comment-161588</guid>
		<description>[...] 这个例子正式为了实现解决上一个陷阱“变量作用域”的最佳方案。匿名函数详细内容请看《Javascript的匿名函数》。YUI整个库只有YAHOO和YAHOO_config两个全局变量，它正是大量应用匿名函数和命名空间的方法来实现，具体请看《Javascript的一种模块模式》。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 这个例子正式为了实现解决上一个陷阱“变量作用域”的最佳方案。匿名函数详细内容请看《Javascript的匿名函数》。YUI整个库只有YAHOO和YAHOO_config两个全局变量，它正是大量应用匿名函数和命名空间的方法来实现，具体请看《Javascript的一种模块模式》。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：yang dong</title>
		<link>http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/comment-page-1/#comment-158050</link>
		<dc:creator>yang dong</dc:creator>
		<pubDate>Thu, 21 Aug 2008 07:52:55 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/#comment-158050</guid>
		<description>thank you very much! you helped me a lot, man!</description>
		<content:encoded><![CDATA[<p>thank you very much! you helped me a lot, man!</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Javascript的匿名函数 @ 随网之舞</title>
		<link>http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/comment-page-1/#comment-140842</link>
		<dc:creator>Javascript的匿名函数 @ 随网之舞</dc:creator>
		<pubDate>Tue, 06 May 2008 17:15:38 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/#comment-140842</guid>
		<description>[...] 《Javascript的一种模块模式》中的第一句话就是“全局变量是魔鬼”。配合var关键字，匿名函数可以有效的保证在页面上写入Javascript，而不会造成全局变量的污染。在这给一个不是很熟悉的页面增加Javascript时非常有效，也很优美。实际上，YUI以及其响应的范例中大量使用匿名函数，其他的Javascript库中也不乏大量使用。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 《Javascript的一种模块模式》中的第一句话就是“全局变量是魔鬼”。配合var关键字，匿名函数可以有效的保证在页面上写入Javascript，而不会造成全局变量的污染。在这给一个不是很熟悉的页面增加Javascript时非常有效，也很优美。实际上，YUI以及其响应的范例中大量使用匿名函数，其他的Javascript库中也不乏大量使用。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：火re</title>
		<link>http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/comment-page-1/#comment-55672</link>
		<dc:creator>火re</dc:creator>
		<pubDate>Sun, 09 Dec 2007 08:21:01 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/2007/12/04/a-javascript-module-pattern/#comment-55672</guid>
		<description>素是什么意思？</description>
		<content:encoded><![CDATA[<p>素是什么意思？</p>
]]></content:encoded>
	</item>
</channel>
</rss>
