Frame noResize 属性

定义和用法
noResize 属性可设置或者返回 frame元素中 noresize 属性的值。
noresize 属性指定了不能被用户重置大小的框架。
语法
frameObject.noResize = true | false
浏览器支持
所有主要浏览器都支持 noResize 属性
实例
在我们的例子中,首先将创建包含带有两个列的框架集的 HTML 文档。每列设置为浏览器窗口的 50%:
<html>
<frameset cols="50%,50%">
<frame id="leftFrame" src="/examples/frame_noresize.htm">
<frame id="rightFrame" src="/examples/frame_a.htm">
</frameset>
</html>
"/examples/frame_noresize.htm"源代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>蜜蜂教程(mifengjc.com)</title>
<frameset cols="50%,50%">
<frame id="leftFrame" src="/examples/frame_noresize.htm">
<frame id="rightFrame" src="/examples/frame_a.htm">
</frameset>
</head>
</html>
