<?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; bug</title>
	<atom:link href="http://bluehua.org/tag/bug/feed" rel="self" type="application/rss+xml" />
	<link>http://bluehua.org</link>
	<description>分享所学,backup一切~</description>
	<lastBuildDate>Wed, 23 Nov 2011 08:43:10 +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>firefox favicon丢失</title>
		<link>http://bluehua.org/2009/09/21/579.html</link>
		<comments>http://bluehua.org/2009/09/21/579.html#comments</comments>
		<pubDate>Mon, 21 Sep 2009 14:27:39 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[web dev]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://bluehua.org/?p=579</guid>
		<description><![CDATA[测试环境: firefox3.0 &#8211; 3.5 强大的qa同学,连favicon都照顾到了,具体情况:有个页面刚进去的时候时kaixin网的favicon,加载完毕是人人网的favicon~ demo:http://bluehua.org/demo/favicon_firefox.html &#60;html&#62; &#60;head&#62; &#60;link href=&#34;http://www.google.cn/favicon.ico&#34; rel=&#34;shortcut icon&#34; type=&#34;image/x-icon&#34; /&#62; &#60;/head&#62; &#60;body&#62; &#60;script&#62; window.location.href = '#fdsafasd'; &#60;/script&#62; &#60;/body&#62; &#60;/html&#62; 页面加载过程中,如果使用脚本修改锚点,firefox便会到server的根目录取默认的favicon.ico,如果取不到就变空了,如果取到了,但跟指定的favicon不一样,情况就跟qa同学看到的一样,更神奇了.. 但是发现像下面这样window.onload时改变锚点没有问题 demo:http://bluehua.org/demo/favicon_firefox_onload.html &#60;html&#62; &#60;head&#62; &#60;link href=&#34;http://www.google.cn/favicon.ico&#34; rel=&#34;shortcut icon&#34; type=&#34;image/x-icon&#34; /&#62; &#60;/head&#62; &#60;body&#62; &#60;script&#62; window.onload=function&#40;&#41; &#123; window.location.href = '#fdsafasd'; &#125;; &#60;/script&#62; &#60;/body&#62; &#60;/html&#62;]]></description>
			<content:encoded><![CDATA[<p>测试环境: firefox3.0 &#8211; 3.5</p>
<p>强大的qa同学,连favicon都照顾到了,具体情况:有个页面刚进去的时候时kaixin网的favicon,加载完毕是人人网的favicon~</p>
<p>demo:<a href="http://bluehua.org/demo/favicon_firefox.html">http://bluehua.org/demo/favicon_firefox.html</a></p>

<div class="wp_syntax"><div class="code overflow"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>html<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>head<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>link href<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://www.google.cn/favicon.ico&quot;</span> rel<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;shortcut icon&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;image/x-icon&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;/</span>head<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
window.<span style="color: #660066;">location</span>.<span style="color: #660066;">href</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'#fdsafasd'</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>html<span style="color: #339933;">&gt;</span></pre></div></div>

<p>页面加载过程中,如果使用脚本修改锚点,firefox便会到server的根目录取默认的favicon.ico,如果取不到就变空了,如果取到了,但跟指定的favicon不一样,情况就跟qa同学看到的一样,更神奇了..</p>
<p>但是发现像下面这样window.onload时改变锚点没有问题<br />
demo:<a href="http://bluehua.org/demo/favicon_firefox_onload.html">http://bluehua.org/demo/favicon_firefox_onload.html</a></p>

<div class="wp_syntax"><div class="code overflow"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>html<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>head<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>link href<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://www.google.cn/favicon.ico&quot;</span> rel<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;shortcut icon&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;image/x-icon&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;/</span>head<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
window.<span style="color: #000066;">onload</span><span style="color: #339933;">=</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
window.<span style="color: #660066;">location</span>.<span style="color: #660066;">href</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'#fdsafasd'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>html<span style="color: #339933;">&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2009/09/21/579.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>getAttribute(&#8216;onclick&#8217;) in IE</title>
		<link>http://bluehua.org/2009/09/11/550.html</link>
		<comments>http://bluehua.org/2009/09/11/550.html#comments</comments>
		<pubDate>Fri, 11 Sep 2009 09:05:31 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[web dev]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://bluehua.org/?p=550</guid>
		<description><![CDATA[第n次火星了,可是依然没去过火星. 这个是最近用到才知道,需求是替换onclick属性中的关键字,但是俺单纯的以为geAttribute都会返回一个字符串给我,没想到ie又一次显示了它独到的见解~ &#60;html&#62; &#60;p id=&#34;test&#34; onclick=&#34;alert('click');&#34;&#62;click me~&#60;/p&#62; &#60;script&#62; document.write&#40;'&#60;pre' + '&#62;'&#41;; var el = document.getElementById&#40;'test'&#41;; var at = el.getAttribute&#40;'onclick'&#41;; document.writeln&#40;at&#41;; document.writeln&#40;typeof at&#41;; document.write&#40;'&#60;/' + 'pre&#62;'&#41;; &#60;/script&#62; &#60;/html&#62; ff下输出 alert('click'); string ie6和ie7下输出: function anonymous() { alert('click'); } function ie8下输出: function onclick() { alert('click'); } function 其他事件属性肯定也会有同样表现,ie8十分搞笑,换了一个函数名&#8230; 最后对于ie我只有这样了: &#60;html&#62; &#60;p id=&#34;test&#34; onclick=&#34;alert('click');&#34;&#62;click me~&#60;/p&#62; &#60;script&#62; var el = [...]]]></description>
			<content:encoded><![CDATA[<p>第n次火星了,可是依然没去过火星.<br />
这个是最近用到才知道,需求是替换onclick属性中的关键字,但是俺单纯的以为geAttribute都会返回一个字符串给我,没想到ie又一次显示了它独到的见解~</p>

<div class="wp_syntax"><div class="code overflow"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>html<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>p id<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;test&quot;</span> onclick<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;alert('click');&quot;</span><span style="color: #339933;">&gt;</span>click me~<span style="color: #339933;">&lt;/</span>p<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;pre'</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> el <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'test'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> at <span style="color: #339933;">=</span> el.<span style="color: #660066;">getAttribute</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'onclick'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
document.<span style="color: #660066;">writeln</span><span style="color: #009900;">&#40;</span>at<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
document.<span style="color: #660066;">writeln</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">typeof</span> at<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;/'</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'pre&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>html<span style="color: #339933;">&gt;</span></pre></div></div>

<p>ff下输出</p>
<pre>
alert('click');
string
</pre>
<p>ie6和ie7下输出:</p>
<pre>
function anonymous()
{
alert('click');
}
function
</pre>
<p>ie8下输出:</p>
<pre>
function onclick()
{
alert('click');
}
function
</pre>
<p>其他事件属性肯定也会有同样表现,ie8十分搞笑,换了一个函数名&#8230;</p>
<p>最后对于ie我只有这样了:</p>

<div class="wp_syntax"><div class="code overflow"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>html<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>p id<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;test&quot;</span> onclick<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;alert('click');&quot;</span><span style="color: #339933;">&gt;</span>click me~<span style="color: #339933;">&lt;/</span>p<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #003366; font-weight: bold;">var</span> el <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'test'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> at <span style="color: #339933;">=</span> el.<span style="color: #660066;">getAttribute</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'onclick'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">//函数换成字符串</span>
at <span style="color: #339933;">=</span> at.<span style="color: #660066;">toString</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/^function (anonymous|onclick)\(\)\n\{\n(.*)\n\}$/m</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'$2'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">//替换关键词</span>
at <span style="color: #339933;">=</span> at.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'click'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'wahaha'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">//再变成函数放回去</span>
el.<span style="color: #660066;">setAttribute</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'onclick'</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">new</span> <span style="color: #003366; font-weight: bold;">Function</span><span style="color: #009900;">&#40;</span>at<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>html<span style="color: #339933;">&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2009/09/11/550.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>@￥竟然能使ie6的文字链接神奇变形。。</title>
		<link>http://bluehua.org/2009/08/12/374.html</link>
		<comments>http://bluehua.org/2009/08/12/374.html#comments</comments>
		<pubDate>Wed, 12 Aug 2009 11:38:35 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[web dev]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://bluehua.org/?p=374</guid>
		<description><![CDATA[更新: sonic同学发现了bug的起因: 只要a标签的innerHTML是以http[s]://开头或者包含”@xx”类似email的字符串就会出现这种情况。。 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- 今天qa发现的巨灵异的bug &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- 由于网站域名切换，有些老的数据无法短时间切换，所以打算用js替换。具体实现:当鼠标移到link上时判断是否是老域名，如果是则替换~ 代码类似下面 http://bluehua.org/demo/href+@.html 这段代码在除了ie6的浏览器都是正常的，鼠标移上时两个link的href都变成http://oo.test，但是ie6下第一个link出问题了：鼠标上去，链接文字没了。 “@￥”这两个字正好是qa组leader的id后缀，真牛x~]]></description>
			<content:encoded><![CDATA[<p>更新:<br />
<a href="http://soniccube.net/" target="_blank">sonic</a>同学发现了bug的起因:<br />
只要a标签的innerHTML是以http[s]://开头或者包含”@xx”类似email的字符串就会出现这种情况。。<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
今天qa发现的巨灵异的bug<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
由于网站域名切换，有些老的数据无法短时间切换，所以打算用js替换。具体实现:当鼠标移到link上时判断是否是老域名，如果是则替换~<br />
代码类似下面</p>
<p><a href="http://bluehua.org/demo/href+@.html" target="_blank">http://bluehua.org/demo/href+@.html</a></p>
<p>这段代码在除了ie6的浏览器都是正常的，鼠标移上时两个link的href都变成http://oo.test，但是ie6下第一个link出问题了：鼠标上去，链接文字没了。</p>
<p>“@￥”这两个字正好是qa组leader的id后缀，真牛x~</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2009/08/12/374.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ie下的默认回车提交之强大&#8230;</title>
		<link>http://bluehua.org/2009/06/16/321.html</link>
		<comments>http://bluehua.org/2009/06/16/321.html#comments</comments>
		<pubDate>Tue, 16 Jun 2009 10:08:56 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[web dev]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://bluehua.org/?p=321</guid>
		<description><![CDATA[ie下如果您在text输入框按回车就会默认将表单提交，可是俺万万没有想到，竟然强大到连submit的onclick事件都能触发了&#8230; 示例1：input外面有form标签,输入框按回车会提交表单 &#60;html&#62; &#60;body&#62; &#60;form action=&#34;http://g.cn&#34;&#62; &#60;input type=&#34;submit&#34; value=&#34;haha&#34; onclick=&#34;alert(1);&#34; /&#62; &#60;input type=&#34;text&#34; /&#62; &#60;/form&#62; &#60;/body&#62; &#60;/html&#62; 示例2：input外面没有form标签，输入框按回车会触发submit的onclick事件 &#60;html&#62; &#60;body&#62; &#60;input type=&#34;submit&#34; value=&#34;haha&#34; onclick=&#34;alert(1);&#34; /&#62; &#60;input type=&#34;text&#34; /&#62; &#60;/body&#62; &#60;/html&#62; ajax提交流行的今天，form标签往往直接被省略，所以这个特性很可能造成用户在某个输入框按了回车，然后某处一个不相关的button被ie点了一下&#8230;.]]></description>
			<content:encoded><![CDATA[<p>ie下如果您在text输入框按回车就会默认将表单提交，可是俺万万没有想到，竟然强大到连submit的onclick事件都能触发了&#8230;</p>
<p>示例1：input外面有form标签,输入框按回车会提交表单</p>

<div class="wp_syntax"><div class="code overflow"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>html<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>form action<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://g.cn&quot;</span><span style="color: #339933;">&gt;</span>
    <span style="color: #339933;">&lt;</span>input type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;submit&quot;</span> value<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;haha&quot;</span> onclick<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;alert(1);&quot;</span> <span style="color: #339933;">/&gt;</span>
    <span style="color: #339933;">&lt;</span>input  type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;/</span>form<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>html<span style="color: #339933;">&gt;</span></pre></div></div>

<p>示例2：input外面没有form标签，输入框按回车会触发submit的onclick事件</p>

<div class="wp_syntax"><div class="code overflow"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>html<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>input type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;submit&quot;</span> value<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;haha&quot;</span> onclick<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;alert(1);&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>input  type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;/</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>html<span style="color: #339933;">&gt;</span></pre></div></div>

<p>ajax提交流行的今天，form标签往往直接被省略，所以这个特性很可能造成用户在某个输入框按了回车，然后某处一个不相关的button被ie点了一下&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2009/06/16/321.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ie下title里出现重复锚点的bug</title>
		<link>http://bluehua.org/2009/05/21/300.html</link>
		<comments>http://bluehua.org/2009/05/21/300.html#comments</comments>
		<pubDate>Thu, 21 May 2009 13:55:45 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[web dev]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://bluehua.org/?p=300</guid>
		<description><![CDATA[以前人品好，没碰到过&#8230; 情况就是当页面里有n(n&#62;0)个flash，而且url里带有锚点时页面的title后面就会跟n个锚点 应该算adobe flash 的bug吧，具体： http://bugs.adobe.com/jira/browse/FP-240 IE appends anchor name to title bar adobe的网站上说Flash Player 9 &#8211; 9_0_124_0,IE7下才有这个问题，可俺的问题是在flash10，ie6下发现的，不靠谱&#8230;&#8230;]]></description>
			<content:encoded><![CDATA[<p>以前人品好，没碰到过&#8230;</p>
<p>情况就是当页面里有n(n&gt;0)个flash，而且url里带有锚点时页面的title后面就会跟n个锚点</p>
<p><img class="pie-img" src="http://lh4.ggpht.com/_l8FcMjS-xnI/ShVZYJWmekI/AAAAAAAAE54/hOghQxDwDos/screenshot_014.png?imgmax=640" alt="screenshot_014.png" /></p>
<p>应该算adobe flash 的bug吧，具体：</p>
<p><a href="http://bugs.adobe.com/jira/browse/FP-240">http://bugs.adobe.com/jira/browse/FP-240</a></p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/thread/c91e3dc4-ef05-47f9-b799-db149e3ddc80">IE appends anchor name to title bar</a></p>
<p>adobe的网站上说Flash Player 9              &#8211; 9_0_124_0,IE7下才有这个问题，可俺的问题是在flash10，ie6下发现的，不靠谱&#8230;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2009/05/21/300.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.446 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-05 03:08:51 -->

