對於frameset標簽,相信大家都不陌生,就是像表格一樣將一個頁面劃分成好幾個頁面,如下圖
把一個頁面橫著分成了三部分,各有各自的滾動條。
但是在顯示上圖之前,我試了很多方法,都無法正藏顯示,搞得我很郁悶,後來才知道,這個標簽不能放在<body>標簽裡。
我的代碼如下:
<html> <frameset cols="25%,50%,25%"> <frame src="aaa.html"> <frame src="aaa.html"> <frame src="aaa.html"> </frameset> </html> www.2cto.com <html> <frameset cols="25%,50%,25%"> <frame src="aaa.html"> <frame src="aaa.html"> <frame src="aaa.html"> </frameset> </html>
本文來源:(http://www.2cto.com/kf/201206/136730.html)