[请益] iframe在iphone跑很慢

楼主: SmartBrain (象爆加油喔)   2018-06-22 16:23:29
请问大家 之前做了一个网站
内嵌iframe且惠根据内容大小调整长度
在iphone手机上看中间那块iframe跑很慢才出来
但是用android看就一切正常
请问这个有解吗?
这是iframe程式码
<script type="text/javascript">
function SetCwinHeight()
{
var iframeid=document.getElementById("mainframe"); //iframe id
if (document.getElementById)
{
if (iframeid && !window.opera)
{
if (iframeid.contentDocument &&
iframeid.contentDocument.body.offsetHeight)
{ //ff
iframeid.height=0;
iframeid.height = iframeid.contentDocument.body.offsetHeight;
}else (iframeid.Document && iframeid.Document.body.scrollHeight)
{
//ie
iframeid.height = iframeid.Document.body.scrollHeight;
}
}
}
}
</script>
<iframe src="main.html" name="mainframe" width="100%"
marginwidth="0" marginheight="0" onload="Javascript:SetCwinHeight()"
scrolling="No" frameborder="0" id="mainframe" ></iframe>
再请版上各位大大解惑

Links booklink

Contact Us: admin [ a t ] ucptt.com