<!-- iframe (行内框架) 属性 src="链接地址" frameborder="边框样式" width/height="宽高" srcdoc="文本内容可以给文本内容加标签"如:srcdoc="<h1>hellow</h1> " 注意:srcdoc和src同时存在的情况下,只会保留一个srcdoc 作用: 数据传输 : 共享代码:点击自己的网页某个模块,跳转其他窗口 局部刷新: 第三方介入:给自己网页嵌套其他网站的内容 --> <iframe src="https://speed.qq.com/" frameborder="0" scrolling="yes" width="1000px" height="205px" ></iframe><br> <iframe srcdoc="<h1>hellow</h1> " src="https://speed.qq.com/" frameborder="0" scrolling="yes" width="1000px" height="205px" ></iframe>