1 / 7

Frame, Iframe

Frame, Iframe. http://www.im.ncnu.edu.tw/ycchen/www/html-example.html#frame. <iframe …>. 在網頁中顯示另一個網頁 <iframe src="contFrame.html" /></iframe> <iframe src="contFrame.html" width="200" height="200" > </iframe> <iframe src="contFrame.html" frameborder="0" > </iframe>

Download Presentation

Frame, Iframe

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


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

  2. <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>

  3. http://ycchen.im.ncnu.edu.tw/www2011/lab/frame/iframe.html <a href="../index.html" target="contF">Web Programming Examples</a>, … <iframe src="contFrame.html" width="1080" height="500" name="contF" /></iframe>

  4. <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>

  5. <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

  6. <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>

  7. target屬性 topFrame leftFrame mainFrame http://www.im.ncnu.edu.tw/ycchen/www/html-example.html#frame <a href="http://n.yam.com/" target="_blank">yam天空-新聞</a> _blank _parent _self _top 或frame_name ex. mainFrame

More Related