iframe内联框架
<iframe src="path" name="mainFrame" ></iframe>
path:引用页面地址
mainFrame:框架标识名
<iframe src="https://www.bilibili.com/" frameborder="0" width="500" height="400"</iframe>
<iframe src="" name="hello" frameborder="0"></iframe>
<a href="基本标签学习.html" target="hello">点击跳转</a>
name是内联块的名字,a标签意思是在hello内联块内打开超链接
没了hello会在新页面打开 就无法实现内联了