2012-11-22 来源:网络
【实例介绍】
框架窗口的尺寸noresize
当希望框架窗口的大小保持不变时,就可以设置noresize标记。
【基本语法】
<frame src="页面源文件地址" noresize>
【语法介绍】
noresize没有属性值,添加该属性就不能拖动边框,反之无须指定此属性。
【实例代码】
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>框架窗口的尺寸</title> </head> <frameset rows="80,*" cols="*" frameborder="yes" border="1" framespacing="1"> <frame src="top.html" name="topFrame" noresize/> <frameset rows="*" cols="173,*" framespacing="1" frameborder="yes" border="1"> <frame src="left.html" name="leftFrame" noresize /> <frame src="right.html" name="rightFrame" noresize /> </frameset> </frameset> <noframes><body> </body></noframes> </html>
【代码分析】
在代码中,加粗部分的noresize标记用于设置顶部框架、左右框架边框不能调整窗口尺寸,在浏览器中预览,效果如图所示。如果没有设置noresize标记,则可以调整框架窗口的尺寸。
【素材及源码下载】
请点击:框架窗口的尺寸noresize 下载本实例相关素材及源码
相关文章