<?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>评论：Web Developer 汉化测试版以及 Firebug 中文汉化版下载</title>
	<atom:link href="http://shawphy.com/2008/01/web-developer-and-firebug.html/feed" rel="self" type="application/rss+xml" />
	<link>http://shawphy.com/2008/01/web-developer-and-firebug.html</link>
	<description>关注HTML,CSS,JavaScript,jQuery等前端开发</description>
	<lastBuildDate>Wed, 08 Sep 2010 06:07:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>由：Shawphy</title>
		<link>http://shawphy.com/2008/01/web-developer-and-firebug.html/comment-page-1#comment-16</link>
		<dc:creator>Shawphy</dc:creator>
		<pubDate>Thu, 03 Jul 2008 06:08:55 +0000</pubDate>
		<guid isPermaLink="false">http://shawphy.com/?p=15#comment-16</guid>
		<description>那是一派胡言，两者怎么可能是等价的呢

jQuery(function($){ }); 是给jQuery函数传递一个参数，这个参数是一个匿名函数，这个匿名函数有一个参数$，$=jQuery。而这个函数的功能是等价于jQuery(document).ready(function($){})，作用是用来在页面加载完成后执行匿名函数内的代码。

(function($) { })(jQuery)
这个是先建立一个匿名函数，function(){}，参数是$，然后建立完后用()运算符表示执行这个函数，而在(jQuery)表示把jQuery这个作为参数传递进去就像是alert(a)一样。alert是函数，()是执行函数的运算符，a是传递进去的变量。
这段代码是直接执行的，不会像上一条那样等页面加载完后再执行。

两者唯一的相同之处在于，在匿名函数内部，$指向的必定是传递进去的全局的window.jQuery
如果你引入了其他脚本库，比如prototype，而这个库也使用了$。
这样做就能避免冲突，你在匿名函数中的$必定就jQuery的$而不会是prototype的$。</description>
		<content:encoded><![CDATA[<p>那是一派胡言，两者怎么可能是等价的呢</p>
<p>jQuery(function($){ }); 是给jQuery函数传递一个参数，这个参数是一个匿名函数，这个匿名函数有一个参数$，$=jQuery。而这个函数的功能是等价于jQuery(document).ready(function($){})，作用是用来在页面加载完成后执行匿名函数内的代码。</p>
<p>(function($) { })(jQuery)<br />
这个是先建立一个匿名函数，function(){}，参数是$，然后建立完后用()运算符表示执行这个函数，而在(jQuery)表示把jQuery这个作为参数传递进去就像是alert(a)一样。alert是函数，()是执行函数的运算符，a是传递进去的变量。<br />
这段代码是直接执行的，不会像上一条那样等页面加载完后再执行。</p>
<p>两者唯一的相同之处在于，在匿名函数内部，$指向的必定是传递进去的全局的window.jQuery<br />
如果你引入了其他脚本库，比如prototype，而这个库也使用了$。<br />
这样做就能避免冲突，你在匿名函数中的$必定就jQuery的$而不会是prototype的$。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：尘埃</title>
		<link>http://shawphy.com/2008/01/web-developer-and-firebug.html/comment-page-1#comment-15</link>
		<dc:creator>尘埃</dc:creator>
		<pubDate>Thu, 03 Jul 2008 00:01:56 +0000</pubDate>
		<guid isPermaLink="false">http://shawphy.com/?p=15#comment-15</guid>
		<description>jQuery(function($){ }); 什么意思！！
在网上看了一下说是“jQuery(funtion($){})与(function($) { })(jQuery)原来是等价的”
还是没有明白！
望博主解释一下！！</description>
		<content:encoded><![CDATA[<p>jQuery(function($){ }); 什么意思！！<br />
在网上看了一下说是“jQuery(funtion($){})与(function($) { })(jQuery)原来是等价的”<br />
还是没有明白！<br />
望博主解释一下！！</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：的风格和对方</title>
		<link>http://shawphy.com/2008/01/web-developer-and-firebug.html/comment-page-1#comment-14</link>
		<dc:creator>的风格和对方</dc:creator>
		<pubDate>Tue, 01 Jul 2008 00:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://shawphy.com/?p=15#comment-14</guid>
		<description>放到过方达放到古典风格好</description>
		<content:encoded><![CDATA[<p>放到过方达放到古典风格好</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：shawphy</title>
		<link>http://shawphy.com/2008/01/web-developer-and-firebug.html/comment-page-1#comment-13</link>
		<dc:creator>shawphy</dc:creator>
		<pubDate>Thu, 26 Jun 2008 07:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://shawphy.com/?p=15#comment-13</guid>
		<description>那就多看几本书吧~~
闭包这个东西，以我现在的水平，讲出来也是对你的理解没有帮助的。。。</description>
		<content:encoded><![CDATA[<p>那就多看几本书吧~~<br />
闭包这个东西，以我现在的水平，讲出来也是对你的理解没有帮助的。。。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：尘埃</title>
		<link>http://shawphy.com/2008/01/web-developer-and-firebug.html/comment-page-1#comment-12</link>
		<dc:creator>尘埃</dc:creator>
		<pubDate>Wed, 25 Jun 2008 02:04:41 +0000</pubDate>
		<guid isPermaLink="false">http://shawphy.com/?p=15#comment-12</guid>
		<description>最近看了一下关于闭包的知识，犀牛里说的觉得不是很明白！！！
希望能给解释一下！！</description>
		<content:encoded><![CDATA[<p>最近看了一下关于闭包的知识，犀牛里说的觉得不是很明白！！！<br />
希望能给解释一下！！</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：shawphy</title>
		<link>http://shawphy.com/2008/01/web-developer-and-firebug.html/comment-page-1#comment-11</link>
		<dc:creator>shawphy</dc:creator>
		<pubDate>Tue, 24 Jun 2008 22:42:42 +0000</pubDate>
		<guid isPermaLink="false">http://shawphy.com/?p=15#comment-11</guid>
		<description>shawphy.com/article.asp?id=57
这里是新版本</description>
		<content:encoded><![CDATA[<p>shawphy.com/article.asp?id=57<br />
这里是新版本</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：111</title>
		<link>http://shawphy.com/2008/01/web-developer-and-firebug.html/comment-page-1#comment-10</link>
		<dc:creator>111</dc:creator>
		<pubDate>Tue, 24 Jun 2008 20:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://shawphy.com/?p=15#comment-10</guid>
		<description>怎么安装啊</description>
		<content:encoded><![CDATA[<p>怎么安装啊</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：shawphy</title>
		<link>http://shawphy.com/2008/01/web-developer-and-firebug.html/comment-page-1#comment-9</link>
		<dc:creator>shawphy</dc:creator>
		<pubDate>Fri, 25 Apr 2008 13:52:37 +0000</pubDate>
		<guid isPermaLink="false">http://shawphy.com/?p=15#comment-9</guid>
		<description>其实我估计官网的这个1.1.5压根就没更新，随手改一下rdf文档就打发走人了。要不然怎么翻译好的简体中文版没集成呢？(babelzilla.org里已经翻译好了)。难不成他也支持藏独还是反对奥运不成？呵呵。

chrome.manifest这个文件也得改的。</description>
		<content:encoded><![CDATA[<p>其实我估计官网的这个1.1.5压根就没更新，随手改一下rdf文档就打发走人了。要不然怎么翻译好的简体中文版没集成呢？(babelzilla.org里已经翻译好了)。难不成他也支持藏独还是反对奥运不成？呵呵。</p>
<p>chrome.manifest这个文件也得改的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：Neo</title>
		<link>http://shawphy.com/2008/01/web-developer-and-firebug.html/comment-page-1#comment-8</link>
		<dc:creator>Neo</dc:creator>
		<pubDate>Fri, 25 Apr 2008 09:41:21 +0000</pubDate>
		<guid isPermaLink="false">http://shawphy.com/?p=15#comment-8</guid>
		<description>我最近更新到FireFOx3.0 但是你的这个汉化好像是不支持3.0了。我修改install.rdf依然不行，于是我尝试自己制作汉化，我使用了官方支持3.0的1.1.5版本，添加你的汉化文件，修改了一下install.js和install.rdf，但是无法安装，应该是有的地方没修改对。希望能提供制作汉化的方法，谢谢！</description>
		<content:encoded><![CDATA[<p>我最近更新到FireFOx3.0 但是你的这个汉化好像是不支持3.0了。我修改install.rdf依然不行，于是我尝试自己制作汉化，我使用了官方支持3.0的1.1.5版本，添加你的汉化文件，修改了一下install.js和install.rdf，但是无法安装，应该是有的地方没修改对。希望能提供制作汉化的方法，谢谢！</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：cssrain</title>
		<link>http://shawphy.com/2008/01/web-developer-and-firebug.html/comment-page-1#comment-7</link>
		<dc:creator>cssrain</dc:creator>
		<pubDate>Wed, 23 Jan 2008 08:27:13 +0000</pubDate>
		<guid isPermaLink="false">http://shawphy.com/?p=15#comment-7</guid>
		<description>对的. 必须打成包rar. 上次我发一个.exe.的.
也不能下载.</description>
		<content:encoded><![CDATA[<p>对的. 必须打成包rar. 上次我发一个.exe.的.<br />
也不能下载.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
