HTML 内嵌网页

47 阅读1分钟

####方式一

使用 iframe 标签

<iframe height="200" width="200" style="border: none;" src="http://localhost:3001/index2.html"></iframe>

####方式二

div 添加 html 内容

<div id="viewDiv" style="width: 500px; height: 500px;"></div>

document.getElementById('viewDiv').innerHTML = '<object type="text/html" data="http://localhost:3001/index2.html" width="100%" height="100%"></object>'