簡體   English   中英

HTML框架集和框架有問題

[英]Problem with HTML frameset and frame

我正在使用以下HTML文件。 頁面什么也不顯示,我的文本編輯器以黃色突出顯示frameset標記,表明它是錯誤(或警告)。 此代碼有什么問題?

<html>
    <head></head>
    <body>
        <frameset>
            <frame src="http://google.com/" scrolling="yes">
        </frameset>
    </body>
</html>

刪除<body>標簽。 也是結束標記</body>

<html>
    <head></head>

        <frameset>
            <frame src="http://google.com/" scrolling="yes">
        </frameset>

</html>

我相信需要width屬性:

<frameset cols="*">

刪除正文,然后向框架集添加cols或rows屬性。 另外,請參考框架集DTD,它將為您提供使用框架的規則。

<html>
    <head></head>
    <body>
        <iframe src="http://google.com/" scrolling="yes"/>
    </body>
</html>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM