HTML 页面嵌套除了 iframe 还有其他的方案吗?

iframe object download这三种方案都是现在比较常规的方案,有没有大神知道哪些常人不知道又可以做到页面嵌套效果的技术方案?打开一个链接的时候如何不跳转新窗口直接在内嵌页面展示?链接是动态的

可以用jquery 的ajx实现,不刷新页面更新页面内容:
$.ajax({
url : "http://l", //target url
type : "POST", // post ,get

headers : {
accept-encoding : "gzip, deflate",
Access-Control-Allow-Origin:"*",
},
contentType : "application/x-www-form-urlencoded",
crossDomain : true,
dataType : "json",
data :dataset //传递的参数jason ,字符串看自己需求了

           success: function(returndata){ //成功
                    alert("success!")                        
                  },
            error:function(data){ //失败                  
                alert("false:"+JSON.stringify(data))                     
            }
        });

用fetch或者jquery获取其他服务器的数据,然后使用DOMapi进行页面的更新操作。
需要被fetch的服务器支持跨域。

应该可以用ajax或者jquery弄吧,具体操作我没试过,好久没摸过那东西了,但是原理上应该可以