<?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>迷你部落格 &#187; IE</title>
	<atom:link href="http://minidr.com/archives/tag/ie/feed" rel="self" type="application/rss+xml" />
	<link>http://minidr.com</link>
	<description>Mini Dragon&#039;s Blog</description>
	<lastBuildDate>Sun, 15 Apr 2012 11:12:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>No IE - 网站禁止IE访问的方法</title>
		<link>http://minidr.com/archives/536</link>
		<comments>http://minidr.com/archives/536#comments</comments>
		<pubDate>Mon, 25 Oct 2010 14:40:35 +0000</pubDate>
		<dc:creator>Mini Dragon</dc:creator>
				<category><![CDATA[网络]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://minidr.com/?p=536</guid>
		<description><![CDATA[由于天气原因,我们不想让IE用户看到我们的站点. 下面这3行代码能完全禁止IE对某个站点的访问. 1 2 3 4 5 6 7 &#60;!--[if lte IE 6]&#62; &#60;style&#62;*{position:relative}&#60;/style&#62;&#60;table&#62;&#60;input&#62;&#60;/table&#62; &#60;![endif]--&#62; &#60;!--[if lt IE 9]&#62; &#60;style&#62;html{display:none;}&#60;/style&#62; &#60;meta http-equiv=&#34;Refresh&#34; content=&#34;0; url=http://127.0.0.1&#34;&#62; &#60;![endif]--&#62; 首先可以看到IF判断,就是对IE有效. 然后下一行,利用了IE6里面的一个bug,IE6里面有一个比HTML还要高级的匿名元素,*.具体原理要问微软工程师对这个匿名元素的处理了.这个bug能让IE崩溃掉. IE7以上的崩溃bug貌似没有,就用转跳,条件判断下,然后下一行,css里面使HTML元素完全不显示,这样加载了css以后看到的是一个空白的页面. 接着下一行,页面加载完毕以后Meta转跳到某网址.可以转跳任何url. 我本来是没用到第5行的,但是发现页面加载的时候,有的元素还是能显示出来的,所以要用第5行隐藏整个页面,这样IE用户看到的是一个空白的页面,后台加载完毕后接着被转跳. 下面是一个例子.小白の窝.这个站点就是用了上面的方法.]]></description>
			<content:encoded><![CDATA[<p>由于天气原因,我们不想让IE用户看到我们的站点.<br />
下面这3行代码能完全禁止IE对某个站点的访问.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;!--[if lte IE 6]&gt;
&lt;style&gt;*{position:relative}&lt;/style&gt;&lt;table&gt;&lt;input&gt;&lt;/table&gt;
&lt;![endif]--&gt;
&lt;!--[if lt IE 9]&gt;
&lt;style&gt;html{display:none;}&lt;/style&gt;
&lt;meta http-equiv=&quot;Refresh&quot; content=&quot;0; url=http://127.0.0.1&quot;&gt;
&lt;![endif]--&gt;</pre></td></tr></table></div>

<p>首先可以看到IF判断,就是对IE有效. 然后下一行,利用了IE6里面的一个bug,IE6里面有一个比HTML还要高级的匿名元素,*.具体原理要问微软工程师对这个匿名元素的处理了.这个bug能让IE崩溃掉.<br />
IE7以上的崩溃bug貌似没有,就用转跳,条件判断下,然后下一行,css里面使HTML元素完全不显示,这样加载了css以后看到的是一个空白的页面.<br />
接着下一行,页面加载完毕以后Meta转跳到某网址.可以转跳任何url.</p>
<p>我本来是没用到第5行的,但是发现页面加载的时候,有的元素还是能显示出来的,所以要用第5行隐藏整个页面,这样IE用户看到的是一个空白的页面,后台加载完毕后接着被转跳.</p>
<p>下面是一个例子.<a href="http://vikivone.com" target="_blank">小白の窝</a>.这个站点就是用了上面的方法.</p>
]]></content:encoded>
			<wfw:commentRss>http://minidr.com/archives/536/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>多难兴邦</title>
		<link>http://minidr.com/archives/460</link>
		<comments>http://minidr.com/archives/460#comments</comments>
		<pubDate>Sat, 14 Aug 2010 15:37:36 +0000</pubDate>
		<dc:creator>Mini Dragon</dc:creator>
				<category><![CDATA[博客]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://minidr.com/?p=460</guid>
		<description><![CDATA[如题. 我也赶潮流,把博客弄黑白.可惜本人水品有限,只能把IE弄黑~ &#60;style&#62; html{filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);} &#60;/style&#62; 手中木有IE,不知道效果~]]></description>
			<content:encoded><![CDATA[<p>如题.<br />
我也赶潮流,把博客弄黑白.可惜本人水品有限,只能把IE弄黑~</p>
<blockquote><p>&lt;style&gt;<br />
html{filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);}<br />
&lt;/style&gt;</p></blockquote>
<p>手中木有IE,不知道效果~</p>
]]></content:encoded>
			<wfw:commentRss>http://minidr.com/archives/460/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Google要放弃IE6了!</title>
		<link>http://minidr.com/archives/205</link>
		<comments>http://minidr.com/archives/205#comments</comments>
		<pubDate>Wed, 03 Feb 2010 13:57:09 +0000</pubDate>
		<dc:creator>Mini Dragon</dc:creator>
				<category><![CDATA[网络]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://minidr.com/?p=205</guid>
		<description><![CDATA[Google 近日表示,将从3月开始停止支持微软IE 6网络浏览器. Google应用高级产品经理Rajen Sheth称:"很多其他公司已经停止支持IE 6等较老版本的网络浏览器以及开发商自身停止支持的网络浏览器.我们也将从Google Docs与Google Sites开始停止支持这些浏览器." Sheth 表示,Google Docs 和Google Sites将从3月1日起不再支持IE 6,届时IE 6用户登录Google Docs和Google Sites将无法使用一些关键功能.Sheth建议这些用户在3月1日之前将浏览器版本升级至IE 7,Firefox 3.0,Google Chrome 4.0或是Safari 3.0. 据市场研究机构 StatCounter统计,IE 6目前在网络浏览器市场占有18%的市场份额. 我的话: 谁还在使用IE 6?都是残留在XP平台的人,包括学校机房,网吧等等.哦,对了,不要以为用了搜狗傲游QQ360就不算IE了,他们没有自己的核心,还是调用IE的,新瓶装旧酒,没技术含量. 现在好的,Google都这么抵制IE6了,可以的,我的博客也要抵制IE6了.哼哼.还在用IE6的同学,你们要被时代淘汰了!!!]]></description>
			<content:encoded><![CDATA[<p><img src="http://free.imgbed.com/pp/noie.png"><br />
Google 近日表示,将从3月开始停止支持微软IE 6网络浏览器.</p>
<p>Google应用高级产品经理Rajen Sheth称:"很多其他公司已经停止支持IE 6等较老版本的网络浏览器以及开发商自身停止支持的网络浏览器.我们也将从Google Docs与Google Sites开始停止支持这些浏览器."</p>
<p>Sheth 表示,Google Docs 和Google Sites将从3月1日起不再支持IE 6,届时IE 6用户登录Google Docs和Google Sites将无法使用一些关键功能.Sheth建议这些用户在3月1日之前将浏览器版本升级至IE 7,Firefox 3.0,Google Chrome 4.0或是Safari 3.0.</p>
<p>据市场研究机构 StatCounter统计,IE 6目前在网络浏览器市场占有18%的市场份额. </p>
<p>我的话:<br />
谁还在使用IE 6?都是残留在XP平台的人,包括学校机房,网吧等等.哦,对了,不要以为用了搜狗傲游QQ360就不算IE了,他们没有自己的核心,还是调用IE的,新瓶装旧酒,没技术含量.<br />
现在好的,Google都这么抵制IE6了,可以的,我的博客也要抵制IE6了.哼哼.还在用IE6的同学,你们要被时代淘汰了!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://minidr.com/archives/205/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>本博客IE与Firefox的区别</title>
		<link>http://minidr.com/archives/67</link>
		<comments>http://minidr.com/archives/67#comments</comments>
		<pubDate>Sun, 10 Jan 2010 04:47:45 +0000</pubDate>
		<dc:creator>Mini Dragon</dc:creator>
				<category><![CDATA[博客]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://minidr.com/?p=67</guid>
		<description><![CDATA[也许是我功力不足,IE下的CSS总是写不好. 废话不多说,有图为证.]]></description>
			<content:encoded><![CDATA[<p>也许是我功力不足,IE下的CSS总是写不好.</p>
<p>废话不多说,有图为证.<img class="alignnone" src="http://i3.zou.lu/pp/web.png" alt="" width="554" height="699" /></p>
]]></content:encoded>
			<wfw:commentRss>http://minidr.com/archives/67/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

