Frameset rows 屬性
Frameset 對象定義和用法
rows 屬性可設置或返回框架中行的數(shù)目和尺寸。
由逗號分割的像素或百分比列表定義了列的數(shù)目和高度。
語法
framesetObject.rows=values
rows 屬性可以是以下一個或者多個值:
值 | 描述 |
---|---|
pixels | row 高度可以以像素指定 (如 "100px" 或者 "100") |
% | row 高度可以是百分比指定 (如"50%") |
* | 剩余可用空間 |
瀏覽器支持
所有主流瀏覽器都支持 rows 屬性。
實例
在我們的例子中,首先將創(chuàng)建包含帶有兩個列的框架集的 HTML 文檔。每列設置為瀏覽器窗口的 50%:
<html>
<frameset id="main" rows="50%,50%">
<frame src="frame_rows.htm">
<frame src="frame_a.htm">
</frameset>
</html>
<frameset id="main" rows="50%,50%">
<frame src="frame_rows.htm">
<frame src="frame_a.htm">
</frameset>
</html>
"frame_rows.htm" 源代碼如下:
Example
<html>
<head>
<script>
function changeRows()
{
parent.document.getElementById("main").rows="30%,70%"
}
function restoreRows()
{
parent.document.getElementById("main").rows="50%,50%"
}
</script>
</head>
<body>
<form>
<input type="button" onclick="changeRows()" value="Change row size">
<input type="button" onclick="restoreRows()" value="Restore row size">
</form>
</body>
</html>
<head>
<script>
function changeRows()
{
parent.document.getElementById("main").rows="30%,70%"
}
function restoreRows()
{
parent.document.getElementById("main").rows="50%,50%"
}
</script>
</head>
<body>
<form>
<input type="button" onclick="changeRows()" value="Change row size">
<input type="button" onclick="restoreRows()" value="Restore row size">
</form>
</body>
</html>
嘗試一下 ?
Frameset 對象
更多建議: