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);"');
}
//自適應(yīng)內(nèi)容高度
window.myloaddata=function(ele){
ele.height=ele.contentWindow.document.body.scrollHeight+100;
}
</script>