iframe vs frame
iframe
embeds a frame directly inline with the other elements of a webpage.(inline)(more seamless)
able to "float" within content in a page
缺點
- Loading with multiple copies of the same *.js *.css file
- window 的 onload 事件需要在所有 iframe 載入完畢後(包含裡面的元素)才會觸發
- 首頁面和其中的 iframe 是共享這些連接的
2&3的解決方案
在首頁面上重要的元素載入完畢後, 再通過 JavaScript 動態設定 iframe 的 SRC
frame
- <frameset> creates a frameset, which divides the page into multiple frames.
- outdated