當(dāng)前位置:軟件學(xué)堂 > 資訊首頁(yè) > 網(wǎng)絡(luò)編程 > DIV+CSS > 框架窗口的尺寸noresize

框架窗口的尺寸noresize

2012/11/22 13:41:28作者:佚名來(lái)源:網(wǎng)絡(luò)

移動(dòng)端

【實(shí)例介紹】

框架窗口的尺寸noresize

當(dāng)希望框架窗口的大小保持不變時(shí),就可以設(shè)置noresize標(biāo)記。

【基本語(yǔ)法】

<frame  src="頁(yè)面源文件地址"  noresize>

【語(yǔ)法介紹】

noresize沒有屬性值,添加該屬性就不能拖動(dòng)邊框,反之無(wú)須指定此屬性。

【實(shí)例代碼】

<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標(biāo)記用于設(shè)置頂部框架、左右框架邊框不能調(diào)整窗口尺寸,在瀏覽器中預(yù)覽,效果如圖所示。如果沒有設(shè)置noresize標(biāo)記,則可以調(diào)整框架窗口的尺寸。

框架窗口的尺寸noresize運(yùn)行效果

 【素材及源碼下載】

請(qǐng)點(diǎn)擊:框架窗口的尺寸noresize 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: 框架  窗口  尺寸