Posts Tagged IE6

Google 推出Google Chrome Frame ,IE 變身 Chrome

資深的電腦用家都可聽過微軟Internet Explorer(IE)的種種問題,包括保安漏洞、容易被病毒入侵、個人資料容易被網釣(Phising)即係假網站盜用等等。而如果從事網頁設計的人士,相信對IE更是「又愛又恨」!雖然IE已推出了第8版本,但仍有很多人使用第6版本(安裝第7版本會驗證閣下的Windows是否正版)。不過即使第8版本加入了不少新功能,而且會隨Windows 7附送,但其速度仍然較其他瀏覽器慢,例如Firefox, Safari同最新推出的Google Chrome。

Google最近推出Google Chrome Frame,全面「入侵」IE的領土。當用戶安裝了Google Chrome Frame後,即可在IE上體驗Google Chrome的速度。只需在瀏覽的網址前加上cf:即可,如下圖所示:

瀏覽Acid Test網站,不能正常顯示

http://www.hotjetso.com/attachments/month_0909/09092717294ab8f610fcb7dec6.jpg以普通IE

以安裝了Google Chrome Frame的IE瀏覽Acid Test網站,可以正常顯示,而且速度明顯加快
Read the rest of this entry »

Share

, ,

No Comments

小心IE7 javascript 的 getElementById Method 的問題

1. 要注意用相同的 name and id attributes for Form Inputs
chowky 很久以前都覺得奇怪,不過這是因為IE系列和其他不同的browser的分別,ie 是會search 左name attribute先,再search id attribute,但是其他browser是不會的。所以兩個attributes 都要用相同的名。避免發生問題

1
<input type="text" name="full_address" id="address" value="5th Avenue" />

2. 不要放name attribute 在form tag 入面。
和上面的情況非常相似,要避免IE的問題。

不過chowky 不知道name 是deprecated (哈)

Also, the name attribute for forms is deprecated in XHTML Strict, so it’s not best practice anyhow. The name attribute was added to form elements in older sites, so if you’re trying to debug a getElementById issue in IE7 on some inherited code, there could be a conflict occurring due to this fact.

1
2
<form id="contact_form">
</form>

Read the rest of this entry »

Share

, , , ,

No Comments

IE6 Notice 提醒用家升級 IE6

IE6 是最麻煩的產品,而且是很久前的產品,所以對新式的技術支援性非常低。常

有出錯的機會。所以應該淘汰,但基於很多的原因,導致IE6始終是最大的瀏覽器。


Read the rest of this entry »

Share

, , ,

2 Comments