當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > 表單不支持框架標(biāo)記noframes

表單不支持框架標(biāo)記noframes

2012/11/22 22:34:40作者:佚名來源:網(wǎng)絡(luò)

移動端

【實(shí)例介紹】

表單不支持框架標(biāo)記noframes

9.3.7不支持框架標(biāo)記noframes不支持框架標(biāo)記noframes用來為不能顯示框架的瀏覽器制作內(nèi)容。因為有一些瀏覽器或者瀏覽設(shè)備中并不支持框架元素,將不能正常顯示內(nèi)容。使用noflames標(biāo)記,可以使此類瀏覽器中顯示noframes標(biāo)記中的內(nèi)容。

【基本語法】

<noframes>替換顯示內(nèi)容</noframes>

【語法介紹】

在該語法中,<noframes>和</noframes>標(biāo)記之間的部分就是在不支持框架的瀏覽器中所要顯示的內(nèi)容。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>設(shè)置框架滾動條</title> </head> <frameset rows="123,*" cols="*" frameborder="yes" border="1" framespacing="1">   <frame src="top.html" name="topFrame" scrolling="yes" noresize marginwidth="200" marginheight="100" />   <frameset rows="*" cols="265,*" framespacing="0" frameborder="yes" border="0">     <frame src="left.html" name="leftFrame" scrolling="yes" noresize marginwidth="20"marginheight="100"/>     <frame src="right.html" name="rightFrame" scrolling="no" noresize/>   </frameset> </frameset> <noframes>

<body>此瀏覽器不支持框架結(jié)構(gòu)頁面!</body>

</noframes> </html>

【代碼分析】

在代碼中,加粗部分<noframes>…</noframes>標(biāo)記的作用為,如果此瀏覽器不支持框架頁面,則顯示此標(biāo)記中的內(nèi)容。

標(biāo)簽: 表單  不支持  框架標(biāo)記