举报投诉联系我们 手机版 热门标签 鳄鱼CMS
您的位置:鳄鱼CMS > html中dom HTML DOM Frameset rows 属性

html中dom HTML DOM Frameset rows 属性

2023-04-09 00:31

html中dom HTML DOM Frameset rows 属性

html中dom HTML DOM Frameset rows 属性

html中dom

Frameset rows 属性

Frameset 对象参考手册 Frameset 对象

定义和用法

rows 属性可设置或返回框架中行的数目和尺寸。

由逗号分割的像素或百分比列表定义了列的数目和高度。

语法

framesetObject.rows=values

rows 属性可以是以下一个或者多个值:

描述
pixels row 高度可以以像素指定 (如 "100px" 或者 "100")
% row 高度可以是百分比指定 (如"50%")
* 剩余可用空间


浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

所有主流浏览器都支持 rows 属性。


实例

在我们的例子中,首先将创建包含带有两个列的框架集的 HTML 文档。每列设置为浏览器窗口的 50%:

<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>



Frameset 对象参考手册 Frameset 对象
阅读全文
以上是鳄鱼CMS为你收集整理的html中dom HTML DOM Frameset rows 属性全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
  • html style margin HTML DOM Style marginLeft 属性

    html style margin HTML DOM Style marginLeft 属性

    2023-03-26

    Style marginLeft 属性 Style 对象定义和用法marginLeft 属性设置或返回元素的左外边距。语法设置 marginLeft 属性:Object.styl...

  •  HTML DOM Style maxHeight 属性

    HTML DOM Style maxHeight 属性

    2023-04-16

    Style maxHeight 属性 Style 对象定义和用法maxHeight 属性设置或返回元素的最大高度。maxHeight 属性只在块级元素或绝对/固定位...

  • html table style HTML DOM Style tableLayout 属性

    html table style HTML DOM Style tableLayout 属性

    2023-03-15

    Style tableLayout 属性 Style 对象定义和用法tableLayout 属性设置或返回表格单元格、行、列的显示算法规则。语法设置 tableLay...

  •  HTML DOM Style textDecoration 属性

    HTML DOM Style textDecoration 属性

    2023-05-08

    Style textDecoration 属性 Style 对象定义和用法textDecoration 属性设置或返回一个或多个的文本修饰。提示:如需为元素规定一...

  • html table frame HTML DOM Table frame 属性

    html table frame HTML DOM Table frame 属性

    2023-03-22

    Table frame 属性 Table 对象定义和用法frame 属性可设置或返回表格的外部边框。语法设置 frame 属性:tableObject.frame="void|...

© 2024 鳄鱼CMS eyucms.com 版权所有 联系我们