將不確定變成確定~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>里,就會出現子框架不能加載的問題。
回到目錄
浙公網安備 33010602011771號