<?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>Comments on: Firebox 3 后退后按钮 diasabled 状态不恢复的一个解决方案</title>
	<atom:link href="http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/feed/" rel="self" type="application/rss+xml" />
	<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/</link>
	<description>web 标准，前端开发，编程感悟，生活杂想</description>
	<lastBuildDate>Fri, 12 Mar 2010 08:20:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: 天堂左我往右</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-157539</link>
		<dc:creator>天堂左我往右</dc:creator>
		<pubDate>Sun, 25 Oct 2009 13:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-157539</guid>
		<description>回退的时候不仅仅是disabled,就连div被拖拽位置等等都会保留
hax兄说的灰常好</description>
		<content:encoded><![CDATA[<p>回退的时候不仅仅是disabled,就连div被拖拽位置等等都会保留<br />
hax兄说的灰常好</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: li</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-127858</link>
		<dc:creator>li</dc:creator>
		<pubDate>Tue, 17 Feb 2009 07:30:12 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-127858</guid>
		<description>2.0也有这个问题，抱歉我没搞清楚
但是我的程序在2.0中就ok，3.0下才出的问题。。。。。。。</description>
		<content:encoded><![CDATA[<p>2.0也有这个问题，抱歉我没搞清楚<br />
但是我的程序在2.0中就ok，3.0下才出的问题。。。。。。。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: li</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-127854</link>
		<dc:creator>li</dc:creator>
		<pubDate>Tue, 17 Feb 2009 06:58:40 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-127854</guid>
		<description>to hax

https://bugzilla.mozilla.org/show_bug.cgi?id=439810
这里面已经有了，但是还没有被承认。。。。。。

还有就是2.0中没有这个问题，3.0却有自身的特性都不统一，很难说这不是bug把。
https的情况下同样没有问题

pageshow事件是所有浏览器都支持么？

本人是个新人，说的不对的请指教</description>
		<content:encoded><![CDATA[<p>to hax</p>
<p><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=439810" rel="nofollow">https://bugzilla.mozilla.org/show_bug.cgi?id=439810</a><br />
这里面已经有了，但是还没有被承认。。。。。。</p>
<p>还有就是2.0中没有这个问题，3.0却有自身的特性都不统一，很难说这不是bug把。<br />
https的情况下同样没有问题</p>
<p>pageshow事件是所有浏览器都支持么？</p>
<p>本人是个新人，说的不对的请指教</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hax</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-110049</link>
		<dc:creator>hax</dc:creator>
		<pubDate>Wed, 26 Nov 2008 04:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-110049</guid>
		<description>今天又看了一下，根据http://dev.opera.com/articles/view/efficient-javascript/?page=4的说法，貌似disable按钮直接会禁用Opera的fast history nav（即使用unload恢复）。所以最好不要disable按钮。</description>
		<content:encoded><![CDATA[<p>今天又看了一下，根据http://dev.opera.com/articles/view/efficient-javascript/?page=4的说法，貌似disable按钮直接会禁用Opera的fast history nav（即使用unload恢复）。所以最好不要disable按钮。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hax</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-107839</link>
		<dc:creator>hax</dc:creator>
		<pubDate>Tue, 18 Nov 2008 06:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-107839</guid>
		<description>to闲耘:
unload会阻止FF的高速快取特性。不过你提醒了我们，不应该等到下一次pageshow时处理，而应该在本页的pagehide事件里做善后啊。</description>
		<content:encoded><![CDATA[<p>to闲耘:<br />
unload会阻止FF的高速快取特性。不过你提醒了我们，不应该等到下一次pageshow时处理，而应该在本页的pagehide事件里做善后啊。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 闲耘</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-106044</link>
		<dc:creator>闲耘</dc:creator>
		<pubDate>Thu, 13 Nov 2008 02:40:46 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-106044</guid>
		<description>lazy的软硬刷新不知道分别指的什么，不过我使用FF3刷新（F5，刷新按钮，地址栏回车）是可以的，需要注意的是，back回来时，焦点有可能在disabled掉的提交按钮上，此时F5是无效的。
我觉得hax说的很有道理，不过只需要做好善后处理就行了，这个善后包括提交成功与失败，AJAX提交较好处理，普通提交时，在unload时enable提交按钮即可。</description>
		<content:encoded><![CDATA[<p>lazy的软硬刷新不知道分别指的什么，不过我使用FF3刷新（F5，刷新按钮，地址栏回车）是可以的，需要注意的是，back回来时，焦点有可能在disabled掉的提交按钮上，此时F5是无效的。<br />
我觉得hax说的很有道理，不过只需要做好善后处理就行了，这个善后包括提交成功与失败，AJAX提交较好处理，普通提交时，在unload时enable提交按钮即可。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: netwjx</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-105644</link>
		<dc:creator>netwjx</dc:creator>
		<pubDate>Sat, 08 Nov 2008 11:08:07 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-105644</guid>
		<description>我这里ff3.0.3下 用岁月如歌的示例 后退依然disabled 需要刷新</description>
		<content:encoded><![CDATA[<p>我这里ff3.0.3下 用岁月如歌的示例 后退依然disabled 需要刷新</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hax</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-105543</link>
		<dc:creator>hax</dc:creator>
		<pubDate>Fri, 07 Nov 2008 10:18:38 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-105543</guid>
		<description>因此岁月如歌的autocomplete=off并不是一个合理的规避方法，何况在FF2下也是不起作用的。</description>
		<content:encoded><![CDATA[<p>因此岁月如歌的autocomplete=off并不是一个合理的规避方法，何况在FF2下也是不起作用的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hax</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-105541</link>
		<dc:creator>hax</dc:creator>
		<pubDate>Fri, 07 Nov 2008 10:15:52 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-105541</guid>
		<description>这个不能说是FF的bug，而是高速缓存特性。实际上，在某些场合也许你希望back回去，原来disabled掉的部分会继续disabled（正如表单的其他部分也保持原状）。
事实上，我认为按下之后disable按钮的做法并不是一个完善的方法。比如因为某些原因你提交失败，你要如何再次提交呢？
如果要坚持使用这一方式，用pageshow事件来处理就是最合理的方式——既然本来你就是用脚本disable它的，你就有责任做好各项善后工作。除了pageshow来处理back的问题，这也包括在提交失败的情况下重新enable按钮。</description>
		<content:encoded><![CDATA[<p>这个不能说是FF的bug，而是高速缓存特性。实际上，在某些场合也许你希望back回去，原来disabled掉的部分会继续disabled（正如表单的其他部分也保持原状）。<br />
事实上，我认为按下之后disable按钮的做法并不是一个完善的方法。比如因为某些原因你提交失败，你要如何再次提交呢？<br />
如果要坚持使用这一方式，用pageshow事件来处理就是最合理的方式——既然本来你就是用脚本disable它的，你就有责任做好各项善后工作。除了pageshow来处理back的问题，这也包括在提交失败的情况下重新enable按钮。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucars</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-105221</link>
		<dc:creator>Lucars</dc:creator>
		<pubDate>Mon, 03 Nov 2008 09:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-105221</guid>
		<description>哈哈？真是非常奇妙，今天刚刚发现这个问题，还没有来得及去研究就发现了解决方法了？巧妙，非常巧妙。</description>
		<content:encoded><![CDATA[<p>哈哈？真是非常奇妙，今天刚刚发现这个问题，还没有来得及去研究就发现了解决方法了？巧妙，非常巧妙。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: buzhizhe</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-104975</link>
		<dc:creator>buzhizhe</dc:creator>
		<pubDate>Fri, 31 Oct 2008 07:01:06 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-104975</guid>
		<description>一直用ff3，未发现此bug</description>
		<content:encoded><![CDATA[<p>一直用ff3，未发现此bug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lifesinger</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-104661</link>
		<dc:creator>lifesinger</dc:creator>
		<pubDate>Tue, 28 Oct 2008 04:46:41 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-104661</guid>
		<description>这其实是firefox的特性，可以关闭的，看这里：http://lifesinger.org/blog/?p=569

PS: realazy没开启自动显示trackback?</description>
		<content:encoded><![CDATA[<p>这其实是firefox的特性，可以关闭的，看这里：http://lifesinger.org/blog/?p=569</p>
<p>PS: realazy没开启自动显示trackback?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 卢子嘉</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-104645</link>
		<dc:creator>卢子嘉</dc:creator>
		<pubDate>Tue, 28 Oct 2008 01:56:37 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-104645</guid>
		<description>先转载了在说</description>
		<content:encoded><![CDATA[<p>先转载了在说</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: old9</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-104537</link>
		<dc:creator>old9</dc:creator>
		<pubDate>Mon, 27 Oct 2008 09:08:15 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-104537</guid>
		<description>我以前遇到过这种网站，后退了还是 disabled，不过记得刷新一下就好了，难道firefox3 新增的 bug？</description>
		<content:encoded><![CDATA[<p>我以前遇到过这种网站，后退了还是 disabled，不过记得刷新一下就好了，难道firefox3 新增的 bug？</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fireyy</title>
		<link>http://chen.xianan.name/blog/2008/10/27/a-solution-to-firefox-back-button-disabled/comment-page-1/#comment-104528</link>
		<dc:creator>fireyy</dc:creator>
		<pubDate>Mon, 27 Oct 2008 07:54:54 +0000</pubDate>
		<guid isPermaLink="false">http://realazy.org/blog/?p=185#comment-104528</guid>
		<description>有这种事，还真没发现过</description>
		<content:encoded><![CDATA[<p>有这种事，还真没发现过</p>
]]></content:encoded>
	</item>
</channel>
</rss>
