1 学习html框架
iframe:
<iframe src="URL"></iframe>
设置高度和宽度
<iframe src="demo_iframe.htm" width="200" height="200"></iframe>
移除边框
<iframe src="demo_iframe.htm" frameborder="0"></iframe>
显示目标链接界面
<iframe src="demo_iframe.htm" name="iframe_a"></iframe>
<p><a href="http://www.runoob.com" target="iframe_a">RUNOOB.COM</a></p>
2 没问题
3 明天继续