1.这里就简单的做个效果
HTML代码
<div id='me'>点我</div>
<div id='content'></div>
JS代码
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.js"></script>
<sxript>
$('#me').click(test);
var test = function(){
$("#content").html('<object type="text/html" '+
'data="/cmcc/supplier/cmcc_supplier_exa/index.jsp" '+
'width="100%" height="600px"></object>'+
'onload="myloaddata(this);"');
}
//自适应内容高度
window.myloaddata=function(ele){
ele.height=ele.contentWindow.document.body.scrollHeight+100;
}
</script>