zoukankan      html  css  js  c++  java
  • 将不确定变成确定~frameset页面不能正确加载

    回到目录

    在使用框架页时,它的子框架页面不能正常加载,而单独访问每个子页面是可以访问的,产生这个问题的原因是由于你的frameset节点位置不正确

    在网页中,它不能放在<body></body>之间,必须放在它的外面才行,就像这样:

    <html>
    </head>
     <frameset rows="60,*" frameborder="no" border="0" framespacing="0">
        <frame src="/Account/StatusBar" name="TopFrm" scrolling="no" >
        <frameset cols="220,*" id="attachucp">
        <frame src="/Account/MenuTree" name="LeftFrm" scrolling="no" marginwidth="0" marginheight="0" id="LeftFrm">
        <frame  name="MainFrm">
        </frameset>
        </frameset>
    </head>
    <body>
    </body>
    </html>

    如果希望将它放在<body>里,就会出现子框架不能加载的问题。

    回到目录
  • 相关阅读:
    心得
    第七章
    第六章
    第五章
    第四章
    第三章
    第二章
    第一章
    实验2(4)
    实验2(3)
  • 原文地址:https://www.cnblogs.com/lori/p/2470889.html
Copyright © 2011-2022 走看看