Frame, Iframe .

7
Frame, Iframe http://www.im.ncnu.edu.tw/ycchen/www/html-example. html#frame

Transcript of Frame, Iframe .

Frame, Iframe

http://www.im.ncnu.edu.tw/ycchen/www/html-example.html#frame

<frameset cols=" " > </frameset>

<frameset cols="20%,80%" border="10"> <frame src="simpltoc.htm" name="exampletoc"> <frame src="forms.htm" name="examplecontent"> <noframes>You must use a browser that can display frames to see this page. </noframes> </frameset>

<frameset rows=" " > </frameset>

<frameset rows="70,*"> <frame src="menuFrame.html" name="menu" /> <frame src="contFrame.html" name="content" /> <noframes>You must use a browser that can display frames to see this page. </noframes> </frameset>

http://www.im.ncnu.edu.tw/ycchen/www2011/lab/frame/fIndex.html

<frameset cols="20%,*"> <noframes>…</noframes> <frame src="frametoc.htm" id="noname"> <frameset rows="30%,*"> <frame src="frtoc1.htm" id="toptoc"> <frame src="frstart.htm" id="outer"> </frameset> </frameset>

<iframe …> 在網頁中顯示另一個網頁<iframe src="contFrame.html" /></iframe>

<iframe src="contFrame.html" width="200" height="200">

</iframe>

<iframe src="contFrame.html" frameborder="0"> </iframe>

<iframe src="contFrame.html" name="innerF"> </iframe>

<a href="http://www.ncnu.edu.tw" target="innerF">NCNU</a>

http://ycchen.im.ncnu.edu.tw/www2011/lab/frame/iframe.html

<iframe src="contFrame.html" width="50%" height="300" /></iframe>

target屬性<a href="http://n.yam.com/" target="_blank">yam天

空 - 新聞</a>

_blank_parent_self_top

或 frame_nameex. mainFrame

mainFrameleftFrame

topFrame

http://www.im.ncnu.edu.tw/ycchen/www/html-example.html#frame