IFrame
滚动问题的解决方案。
解决方案:
$(function() {
if (/iPhone|iPod|iPad/.test(navigator.userAgent)) {
$("iframe").bind("load",function() {
var b = this.contentWindow.document.body;
var div = $(document.createElement("div"));
var divCSS = {
'height' : $(this.parentNode).height(),
'width' : $(this.parentNode).width(),
'overflow' : 'scroll'
}
div.css(divCSS);
// Move the body's children into this wrapper
while (b.firstChild)
{
div.append(b.firstChild);
}
// Append the wrapper to the body
$(b).append(div);
});
}
})
随机工作正常。
这里我面临两个问题: