作者SmartBrain (象爆加油喔)
看板Web_Design
标题[请益] iframe在iphone跑很慢
时间Fri Jun 22 16:23:29 2018
请问大家 之前做了一个网站
内嵌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>
再请版上各位大大解惑
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 125.227.4.20
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/Web_Design/M.1529655812.A.092.html