網頁內使用iframe height=100% 於 ie6無法顯示的問題

Home Home
引用 | 編輯 笑笑
2008-04-25 10:55
樓主
推文 x0
這兩天遇到一個鳥問題,就是在網頁中插入 iframe ,用 IE6 無法顯示,但用 IE7 及火弧竟然可以,在百思不解下,拜了一下 Google 大神,終於找到答案,真的是 !@#$%^&

複製程式
<iframe name="live" width="100%" hieght="100%" src="/shoutboxlive" frameborder="0" scrolling="no">

以上語法不能顯示,但改為下面語法就可以,這是什麼鳥問題...

複製程式
<iframe name="live" src="/shoutboxlive" width="100%" hieght="100%" frameborder="0" scrolling="no">

參考 http://forums.microsoft.com/MSDN-CHT/ShowPost.aspx?PostID=2907022&SiteID=14

獻花 x0
引用 | 編輯 月光
2008-04-25 16:42
1樓
  
這應該就是所謂W3C正規兼容問題了吧,語法位址一調換他就看不懂了 表情

獻花 x0