####方式一
使用 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>'