2013-02-03 149 views
0

我需要在其中一半頁面(左側) - 超鏈接列表(Lab2.6-Giper.html)中創建html文檔。在右邊有兩個框架(上下)。在上面的框架中,我顯示了列表中的頁面,在下面的框架中,我需要顯示帶有某個頁面的iframe(Lab2.7-Giper_ris.html)。 但它沒有告訴我iframe。有什麼問題?在另一個框架內顯示iframe

<html> 
<head> 
    <meta charset="utf-8"> 
</head> 
<frameset cols="50%,*"> 
    <frameset> 
     <frame name="left" src="Lab2.6-Giper.html" target="frame_left_up"> 
    </frameset> 
    <frameset rows="50%,*"> 
     <frame name="frame_right_up"> 
     <frameset> 
      <iframe name="frame_right_down" src="Lab2.7-Giper_ris.html">Frame</iframe> 
     </frameset> 
    </frameset> 
</frameset> 
</html> 

回答

1

框架集只能包含框架(和其他框架集)。

如果你想要一個iframe,那麼你必須指定一個加載HTML文檔的框架。該HTML文檔可能包含一個iframe。

相關問題