<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[Doctor's WebLog]]></title> 
<link>http://www.gaobo.info/index.php</link> 
<description><![CDATA[博乐的自留地]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[Doctor's WebLog]]></copyright>
<item>
<link>http://www.gaobo.info/read.php/490.htm</link>
<title><![CDATA[简单的javascript判断浏览器]]></title> 
<author>Doctor &lt;gregry@cqut.edu.cn&gt;</author>
<category><![CDATA[PHP&amp;DB&amp;...]]></category>
<pubDate>Sat, 01 Mar 2008 13:58:00 +0000</pubDate> 
<guid>http://www.gaobo.info/read.php/490.htm</guid> 
<description>
<![CDATA[ 
	以下JS代码能够简洁的实现对操作系统的判断<br/><div class="code"><br/>var Client = &#123;<br/>&nbsp;&nbsp;Engine: &#123;&#039;name&#039;: &#039;unknown&#039;, &#039;version&#039;: &#039;&#039;&#125;,<br/>&nbsp;&nbsp;Features: &#123;&#125;<br/>&#125;;<br/><br/>Client.Features.xhr = !!(window.XMLHttpRequest);<br/>Client.Features.xpath = !!(document.evaluate);<br/><br/>if (window.opera) Client.Engine.name = &#039;opera&#039;;<br/>else if (window.ActiveXObject) Client.Engine = &#123;&#039;name&#039;: &#039;ie&#039;, &#039;version&#039;: (Client.Features.xhr) ? 7 : 6&#125;;<br/>else if (!navigator.taintEnabled) Client.Engine = &#123;&#039;name&#039;: &#039;webkit&#039;, &#039;version&#039;: (Client.Features.xpath) ? 420 : 419&#125;;<br/>else if (document.getBoxObjectFor != null) Client.Engine.name = &#039;gecko&#039;;<br/>Client.Engine&#91;Client.Engine.name&#93; = Client.Engine&#91;Client.Engine.name + Client.Engine.version&#93; = true;<br/></div><br/>可能的结果<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content"><br/>Client.Engine.ie = true; //IE浏览器，版本不限<br/>Client.Engine.ie6 = true; //IE 6<br/>Client.Engine.ie7 = true; //IE 7<br/>Client.Engine.opera = true; //opera<br/>Client.Engine.gecko = true; //Mozilla/Gecko(包括firefox)<br/>Client.Engine.webkit = true; //Safari<br/>Client.Engine.webkit419 = true; //Safari2<br/>Client.Engine.webkit420 = true; //Safari3<br/></div></div><br/>Tags - <a href="http://www.gaobo.info/go.php/tags/javascript/" rel="tag">javascript</a> , <a href="http://www.gaobo.info/go.php/tags/js/" rel="tag">js</a> , <a href="http://www.gaobo.info/go.php/tags/%25E4%25BB%25A3%25E7%25A0%2581/" rel="tag">代码</a> , <a href="http://www.gaobo.info/go.php/tags/%25E6%25B5%258F%25E8%25A7%2588%25E5%2599%25A8/" rel="tag">浏览器</a> , <a href="http://www.gaobo.info/go.php/tags/ie/" rel="tag">ie</a> , <a href="http://www.gaobo.info/go.php/tags/firefox/" rel="tag">firefox</a> , <a href="http://www.gaobo.info/go.php/tags/opera/" rel="tag">opera</a> , <a href="http://www.gaobo.info/go.php/tags/safari/" rel="tag">safari</a> , <a href="http://www.gaobo.info/go.php/tags/mozilla/" rel="tag">mozilla</a>
]]>
</description>
</item>
</channel>
</rss>