一,效果圖。 二,代碼。 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>html 框架</title> </head> <body> <!--iframe 設置高度與寬度--> <iframe src="demo_iframe ...
一,效果圖。
二,代碼。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>html 框架</title>
</head>
<body>
<!--iframe 設置高度與寬度-->
<iframe src="demo_iframe.htm" width="200" height="200"></iframe>
<!--Iframe - 移除邊框-->
<iframe src="demo_iframe.htm" width="200" height="200" frameborder="0"></iframe>
<!--使用iframe來顯示目錄鏈接頁面-->
<iframe src="demo_iframe.htm" name="iframe_a"></iframe>
<p><a href="http://www.baidu.com" target="iframe_a">runoob.com</a></p>
</body>
</html>
參考資料:《菜鳥教程》