<?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>Just is here--恰恰在这里 &#187; firefox</title>
	<atom:link href="http://ishere.cn/tag/firefox/feed" rel="self" type="application/rss+xml" />
	<link>http://ishere.cn</link>
	<description>Jena&#039;s blog</description>
	<lastBuildDate>Sat, 14 Jan 2012 07:51:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>DIV弹窗后禁止页面滚动,IE和FF通用,基于prototype</title>
		<link>http://ishere.cn/2010/06/17/div%e5%bc%b9%e7%aa%97%e5%90%8e%e7%a6%81%e6%ad%a2%e9%a1%b5%e9%9d%a2%e6%bb%9a%e5%8a%a8ie%e5%92%8cff%e9%80%9a%e7%94%a8%e5%9f%ba%e4%ba%8eprototype.html</link>
		<comments>http://ishere.cn/2010/06/17/div%e5%bc%b9%e7%aa%97%e5%90%8e%e7%a6%81%e6%ad%a2%e9%a1%b5%e9%9d%a2%e6%bb%9a%e5%8a%a8ie%e5%92%8cff%e9%80%9a%e7%94%a8%e5%9f%ba%e4%ba%8eprototype.html#comments</comments>
		<pubDate>Thu, 17 Jun 2010 02:36:52 +0000</pubDate>
		<dc:creator>jena</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[protoytpe]]></category>

		<guid isPermaLink="false">http://ishere.cn/?p=522</guid>
		<description><![CDATA[DIV弹出之前，禁止页面滚动： if(Prototype.Browser.IE){ $($$(&#8216;html&#8217;)[0]).setStyle({overflow : &#8216;hidden&#8217;}); }else{ $($$(&#8216;body&#8217;)[0]).setStyle({overflow : &#8216;hidden&#8217;}); } DIV关闭之后，恢复页面滚动： if(Prototype.Browser.IE){ $($$(&#8216;html&#8217;)[0]).setStyle({overflow : &#8216;auto&#8217;}); }else{ $($$(&#8216;body&#8217;)[0]).setStyle({overflow : &#8216;auto&#8217;}); }]]></description>
			<content:encoded><![CDATA[<p>DIV弹出之前，禁止页面滚动：<br />
if(Prototype.Browser.IE){<br />
$($$(&#8216;html&#8217;)[0]).setStyle({overflow : &#8216;hidden&#8217;});<br />
}else{<br />
$($$(&#8216;body&#8217;)[0]).setStyle({overflow : &#8216;hidden&#8217;});<br />
}</p>
<p>DIV关闭之后，恢复页面滚动：<br />
if(Prototype.Browser.IE){<br />
$($$(&#8216;html&#8217;)[0]).setStyle({overflow : &#8216;auto&#8217;});<br />
}else{<br />
$($$(&#8216;body&#8217;)[0]).setStyle({overflow : &#8216;auto&#8217;});<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://ishere.cn/2010/06/17/div%e5%bc%b9%e7%aa%97%e5%90%8e%e7%a6%81%e6%ad%a2%e9%a1%b5%e9%9d%a2%e6%bb%9a%e5%8a%a8ie%e5%92%8cff%e9%80%9a%e7%94%a8%e5%9f%ba%e4%ba%8eprototype.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>给Firefox3动手术：高内存占用优化方案</title>
		<link>http://ishere.cn/2010/06/17/%e7%bb%99firefox3%e5%8a%a8%e6%89%8b%e6%9c%af%ef%bc%9a%e9%ab%98%e5%86%85%e5%ad%98%e5%8d%a0%e7%94%a8%e4%bc%98%e5%8c%96%e6%96%b9%e6%a1%88.html</link>
		<comments>http://ishere.cn/2010/06/17/%e7%bb%99firefox3%e5%8a%a8%e6%89%8b%e6%9c%af%ef%bc%9a%e9%ab%98%e5%86%85%e5%ad%98%e5%8d%a0%e7%94%a8%e4%bc%98%e5%8c%96%e6%96%b9%e6%a1%88.html#comments</comments>
		<pubDate>Thu, 17 Jun 2010 02:35:17 +0000</pubDate>
		<dc:creator>jena</dc:creator>
				<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://ishere.cn/?p=520</guid>
		<description><![CDATA[所谓高内存占用，在我的机器环境下，是指120M左右：一个主题，一个扩展。 下面是手术记录： 在地址栏输入 about:config，进入配置模式： 1. 新建一个布尔值，名为 config.trim_on_minimize，并设定值为 true，这样当 Firefox 最小化时就会释放内存占用； 2. 修改browser.sessionhistory.max_total_viewers修改值为5（页面快进/快退 功能中保存的页面总数，默认是-1(无限)）； 3. 新建一个整数值，名为 browser.cache.memory.capacity，设定其值16384 （&#62;=1G 内存， 此步配置指定内存）。]]></description>
			<content:encoded><![CDATA[<p>所谓高内存占用，在我的机器环境下，是指120M左右：一个主题，一个扩展。</p>
<p>下面是手术记录：</p>
<p>在地址栏输入 about:config，进入配置模式：</p>
<p>1. 新建一个布尔值，名为 config.trim_on_minimize，并设定值为 true，这样当 Firefox 最小化时就会释放内存占用；</p>
<p>2. 修改browser.sessionhistory.max_total_viewers修改值为5（页面快进/快退 功能中保存的页面总数，默认是-1(无限)）；</p>
<p>3. 新建一个整数值，名为 browser.cache.memory.capacity，设定其值16384 （&gt;=1G 内存， 此步配置指定内存）。</p>
]]></content:encoded>
			<wfw:commentRss>http://ishere.cn/2010/06/17/%e7%bb%99firefox3%e5%8a%a8%e6%89%8b%e6%9c%af%ef%bc%9a%e9%ab%98%e5%86%85%e5%ad%98%e5%8d%a0%e7%94%a8%e4%bc%98%e5%8c%96%e6%96%b9%e6%a1%88.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>去掉IE和Firefox点击链接时的焦点虚线框</title>
		<link>http://ishere.cn/2009/09/14/%e5%8e%bb%e6%8e%89ie%e5%92%8cfirefox%e7%82%b9%e5%87%bb%e9%93%be%e6%8e%a5%e6%97%b6%e7%9a%84%e7%84%a6%e7%82%b9%e8%99%9a%e7%ba%bf%e6%a1%86.html</link>
		<comments>http://ishere.cn/2009/09/14/%e5%8e%bb%e6%8e%89ie%e5%92%8cfirefox%e7%82%b9%e5%87%bb%e9%93%be%e6%8e%a5%e6%97%b6%e7%9a%84%e7%84%a6%e7%82%b9%e8%99%9a%e7%ba%bf%e6%a1%86.html#comments</comments>
		<pubDate>Mon, 14 Sep 2009 09:25:27 +0000</pubDate>
		<dc:creator>jena</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://www.ishere.cn/?p=512</guid>
		<description><![CDATA[IE里需要在 a 标签中加入 hidefocus=”true” 属性：&#60;a href=”” hidefocus=”true” title=””&#62;siteface&#60;/a&#62; 而在Firefox等浏览器中定义CSS：a { outline:none; }或者a { outline:0; } 就可以了。 在IE里 hideFocus即隐藏聚焦，具有使对象聚焦失效的功能，其功能相当于： onFocus=”this.blur()” 它的值是一个布尔值，如hideFocus=true。也可省略赋值直接写hideFocus。]]></description>
			<content:encoded><![CDATA[<p>IE里需要在 a 标签中加入 hidefocus=”true” 属性：&lt;a href=”” <strong>hidefocus=”true”</strong> title=””&gt;siteface&lt;/a&gt;<br />
而在Firefox等浏览器中定义CSS：a { outline:none; }或者a { outline:0; } 就可以了。</p>
<p>在IE里 hideFocus即隐藏聚焦，具有使对象聚焦失效的功能，其功能相当于：<br />
onFocus=”this.blur()”<br />
它的值是一个布尔值，如hideFocus=true。也可省略赋值直接写hideFocus。</p>
]]></content:encoded>
			<wfw:commentRss>http://ishere.cn/2009/09/14/%e5%8e%bb%e6%8e%89ie%e5%92%8cfirefox%e7%82%b9%e5%87%bb%e9%93%be%e6%8e%a5%e6%97%b6%e7%9a%84%e7%84%a6%e7%82%b9%e8%99%9a%e7%ba%bf%e6%a1%86.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FireFox 3.0!</title>
		<link>http://ishere.cn/2008/06/18/firefox-30.html</link>
		<comments>http://ishere.cn/2008/06/18/firefox-30.html#comments</comments>
		<pubDate>Wed, 18 Jun 2008 12:36:24 +0000</pubDate>
		<dc:creator>jena</dc:creator>
				<category><![CDATA[keyboard's joy]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.aobodo.com/?p=163</guid>
		<description><![CDATA[天下大事，FireFox　出3.0了！！ 新推出的FireFox 3.0，据称比2.0速度提高2倍，内存占用减小，几乎与苹果的Safari速度不相上下。 还有，FireBug 也有新版本提供下载了［https://addons.mozilla.org/zh-CN/firefox/addon/1843］，官方网站［http://getfirebug.com/releases/］，太帅了，不多说了，赶紧去升级吧！ 还有，在网上刚学的： 地址栏输入about:config打开配置页，将下面两项设置为TRUE： 在新窗口打开搜索页：browser.search.openintab 在后台LOAD外部链接，方便看新闻：browser.tabs.loadDivertedInBackground]]></description>
			<content:encoded><![CDATA[<p>天下大事，FireFox　出3.0了！！</p>
<p>新推出的FireFox 3.0，据称比2.0速度提高2倍，内存占用减小，几乎与苹果的Safari速度不相上下。</p>
<p>还有，FireBug 也有新版本提供下载了［https://addons.mozilla.org/zh-CN/firefox/addon/1843］，官方网站［http://getfirebug.com/releases/］，太帅了，不多说了，赶紧去升级吧！</p>
<p>还有，在网上刚学的：</p>
<p>地址栏输入about:config打开配置页，将下面两项设置为TRUE：<br />
在新窗口打开搜索页：browser.search.openintab<br />
在后台LOAD外部链接，方便看新闻：browser.tabs.loadDivertedInBackground</p>
]]></content:encoded>
			<wfw:commentRss>http://ishere.cn/2008/06/18/firefox-30.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

