<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dream☆Wing &#187; firefox</title>
	<atom:link href="http://www.dreamwing.org/tag/firefox/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dreamwing.org</link>
	<description></description>
	<lastBuildDate>Tue, 06 Jul 2010 03:56:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>我正在用的Firefox附件组件</title>
		<link>http://www.dreamwing.org/computer/my_firefox_addons.html</link>
		<comments>http://www.dreamwing.org/computer/my_firefox_addons.html#comments</comments>
		<pubDate>Fri, 08 May 2009 14:34:35 +0000</pubDate>
		<dc:creator>Dream☆Wing</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.dreamwing.org/?p=700</guid>
		<description><![CDATA[FireBug&#8211;调试必备
YSlow&#8211;性能优化参考
FirePHP&#8211;调试PHP
HttpFox&#8211;调试必备
TwitterFox&#8211;挺好用
Delicious&#8211;收藏站点必备
Diigo&#8211;用的人有点少，圈子太少
Feedly&#8211;看Greader不错，页面推荐也不错
Better Greader&#8211;跟上面的有点冲突了，爱怎么用就怎么用吧
DownThemAll&#8211;非常好用的下载工具
Cooliris&#8211;效果很棒，但是不常用
All-in-one Gestures&#8211;很方便的鼠标手势插件
Easy DragToGo&#8211;很方便的鼠标拖拽插件
FoxTab&#8211;效果不错，但是不实用
gDocsBar&#8211;Google Doc常用工具，不常用就禁用了。。。
Pearl Crescent Page Saver Basic&#8211;网页截图插件
Ubiquity&#8211;很强大的插件，习惯了更强大
Javascript Debugger&#8211;被禁用了，还没机会试用
It&#8217;s All Text&#8211;被禁用了+1
]]></description>
		<wfw:commentRss>http://www.dreamwing.org/computer/my_firefox_addons.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>无所不在</title>
		<link>http://www.dreamwing.org/web/%e6%97%a0%e6%89%80%e4%b8%8d%e5%9c%a8.html</link>
		<comments>http://www.dreamwing.org/web/%e6%97%a0%e6%89%80%e4%b8%8d%e5%9c%a8.html#comments</comments>
		<pubDate>Sat, 30 Aug 2008 17:56:57 +0000</pubDate>
		<dc:creator>Dream☆Wing</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.dreamwing.org/?p=140</guid>
		<description><![CDATA[

好吧，其实我不是标题党
Introducing Ubiquity
]]></description>
		<wfw:commentRss>http://www.dreamwing.org/web/%e6%97%a0%e6%89%80%e4%b8%8d%e5%9c%a8.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox中radio无法选中的问题</title>
		<link>http://www.dreamwing.org/xhtml_css/label_lead_to_radio_not_being_selected_in_firefox.html</link>
		<comments>http://www.dreamwing.org/xhtml_css/label_lead_to_radio_not_being_selected_in_firefox.html#comments</comments>
		<pubDate>Thu, 14 Aug 2008 16:22:51 +0000</pubDate>
		<dc:creator>Dream☆Wing</dc:creator>
				<category><![CDATA[(X)HTML/CSS]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[label]]></category>
		<category><![CDATA[radio]]></category>

		<guid isPermaLink="false">http://www.dreamwing.org/?p=46</guid>
		<description><![CDATA[
&#60;td bgcolor="#FFFFFF" class="padding_all6"&#62;
&#60;label&#62;&#60;input type="radio" name="ishui" value="1" style="vertical-align:middle" {$ishui}/&#62;
是
&#60;input type="radio" name="ishui" value="0" style="vertical-align:middle" {$nothui}/&#62;
否&#60;/label&#62;
&#60;/td&#62;
恩，根据数据默认选中某个值，结果在FF下发现就一直是处于默认选中的那个值，无法选择另一个radio
换IE却没发现有类似问题
以为是默认的checked在作怪，去掉后FF还是出现无法选中另一个囧rz
百度一下，原来是&#60;label&#62;标签在作怪。。。。果然换了2个&#60;label&#62;就正常了。


&#60;td bgcolor="#FFFFFF" class="padding_all6"&#62;
&#60;label&#62;&#60;input type="radio" name="ishui" value="1" style="vertical-align:middle" {$ishui}/&#62;
是&#60;/label&#62;
&#60;label&#62;&#60;input type="radio" name="ishui" value="0" style="vertical-align:middle" {$nothui}/&#62;
否&#60;/label&#62;
&#60;/td&#62;

关于&#60;label&#62;
&#60;label for=&#8221;element_id&#8221; accesskey=&#8221;S&#8221;&#62;保存&#60;/label&#62;&#60;input type=&#8217;submit&#8217; id=&#8217;element_id&#8217;&#62;
设置id为&#8217;element_id&#8217;的控件(?)热键为&#8221;Alt+S&#8221;
其实不只是radio，只要一对&#60;label&#62;标签中含有2个&#60;input&#62;标签都会造成其中一个无法选中的bug。
另：据不完全统计，在FF中，如果label的for指向错误的话会导致
的&#8221;select=&#8217;selected&#8217;&#8221;失效。。。。
]]></description>
		<wfw:commentRss>http://www.dreamwing.org/xhtml_css/label_lead_to_radio_not_being_selected_in_firefox.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
