<?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; IE</title>
	<atom:link href="http://ishere.cn/tag/ie/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>去掉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>HTML中的IF语法判断IE版本</title>
		<link>http://ishere.cn/2008/05/13/158.html</link>
		<comments>http://ishere.cn/2008/05/13/158.html#comments</comments>
		<pubDate>Wed, 14 May 2008 02:16:38 +0000</pubDate>
		<dc:creator>jena</dc:creator>
				<category><![CDATA[keyboard's joy]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE if语法]]></category>
		<category><![CDATA[if语法]]></category>

		<guid isPermaLink="false">http://www.aobodo.com/?p=158</guid>
		<description><![CDATA[1. &#60;!&#8211;[if !IE]&#62;&#60;!&#8211;&#62; 除IE外都可识别 &#60;!&#8211;&#60;![endif]&#8211;&#62; 2. &#60;!&#8211;[if IE]&#62; 所有的IE可识别 &#60;![endif]&#8211;&#62; 3. &#60;!&#8211;[if IE 5.0]&#62; 只有IE5.0可以识别 &#60;![endif]&#8211;&#62; 4. &#60;!&#8211;[if IE 5]&#62; 仅IE5.0与IE5.5可以识别 &#60;![endif]&#8211;&#62; 5. &#60;!&#8211;[if gt IE 5.0]&#62; IE5.0以及IE5.0以上版本都可以识别 &#60;![endif]&#8211;&#62; 6. &#60;!&#8211;[if IE 6]&#62; 仅IE6可识别 &#60;![endif]&#8211;&#62; 7. &#60;!&#8211;[if lt IE 6]&#62; &#8230; <a href="http://ishere.cn/2008/05/13/158.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>1. &lt;!&#8211;[if !IE]&gt;&lt;!&#8211;&gt; 除IE外都可识别 &lt;!&#8211;&lt;![endif]&#8211;&gt;<br />
2. &lt;!&#8211;[if IE]&gt; 所有的IE可识别 &lt;![endif]&#8211;&gt;<br />
3. &lt;!&#8211;[if IE 5.0]&gt; 只有IE5.0可以识别 &lt;![endif]&#8211;&gt;<br />
4. &lt;!&#8211;[if IE 5]&gt; 仅IE5.0与IE5.5可以识别 &lt;![endif]&#8211;&gt;<br />
5. &lt;!&#8211;[if gt IE 5.0]&gt; IE5.0以及IE5.0以上版本都可以识别 &lt;![endif]&#8211;&gt;<br />
6. &lt;!&#8211;[if IE 6]&gt; 仅IE6可识别 &lt;![endif]&#8211;&gt;<br />
7. &lt;!&#8211;[if lt IE 6]&gt; IE6以及IE6以下版本可识别 &lt;![endif]&#8211;&gt;<br />
8. &lt;!&#8211;[if gte IE 6]&gt; IE6以及IE6以上版本可识别 &lt;![endif]&#8211;&gt;<br />
9. &lt;!&#8211;[if IE 7]&gt; 仅IE7可识别 &lt;![endif]&#8211;&gt;<br />
10. &lt;!&#8211;[if lt IE 7]&gt; IE7以及IE7以下版本可识别 &lt;![endif]&#8211;&gt;<br />
11. &lt;!&#8211;[if gte IE 7]&gt; IE7以及IE7以上版本可识别 &lt;![endif]&#8211;&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://ishere.cn/2008/05/13/158.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

