回到目录

在使用框架页时,它的子框架页面不能正常加载,而单独访问每个子页面是可以访问的,产生这个问题的原因是由于你的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,*" >
    <frame src="/Account/MenuTree" name="LeftFrm" scrolling="no" marginwidth="0" marginheight="0" >
    <frame  name="MainFrm">
    </frameset>
    </frameset>
</head>
<body>
</body>
</html>

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

回到目录

相关文章:

  • 2021-08-27
  • 2021-07-25
  • 2021-06-19
  • 2021-07-23
  • 2021-09-04
  • 2021-10-24
  • 2021-12-16
猜你喜欢
  • 2021-06-19
  • 2022-12-23
  • 2021-11-27
  • 2021-08-31
  • 2021-11-20
  • 2021-10-13
  • 2021-09-08
相关资源
相似解决方案