after simply inserting < iframe / > and setting the width and height, it is found that opening it on the Android mobile browser will work normally, but on the iOS phone, the iframe page style will inexplicably become larger
<div class="common-page about-us-page" id="about-us-page">
<iframe id="zhx-iframe" frameborder="0" src="https://m.zbjsaas.com/zhouse"></iframe>
</div>
solution: the
< iframe scrolling="no" / > page is normal, but this method will result in incomplete display of the content in the iframe, and the parts beyond the height of the iframe will be cut out directly.
No other solution can be found for the time being
currently document.getElementById ("zhx-iframe") print is empty
document.getElementById("zhx-iframe").onload = function(){
var doc = document.getElementById("zhx-iframe").contentDocument;
}
as shown in figure