У меня точно такая же проблема.Я сузил его до того факта, что он влияет на DIV, содержимое которых больше не требует прокрутки при изменении ориентации.
В вашем примере.DIV справа прокручивает в альбомной ориентации, не нужно прокручивать в портретной ориентации, но затем нужно прокручивать снова.Я проверил это, когда оба DIV (левый и правый) должны прокручиваться независимо от ориентации, и это не проблема.
ОБНОВЛЕНИЕ:
Я действительно, кажется, исправил это!
Проблема, похоже, связана со временем.Во время изменения размера внутреннее содержимое недостаточно велико для прокрутки во внешнем DIV, который переполнен.Потратив на это целый день, я наконец-то придумал этот хак:
<div id="header" style="position:fixed; height:100px">Header</div>
<div id="content" style="overflow: auto; -webkit-overflow-scrolling: touch">
<div id="contentInner">
content that is not long enough to always scroll during different orientations
</div>
</div>
Вот моя логика, когда размер страницы изменяется:
function handleResize()
{
var iHeight = $(window).height() - $("#header").height();
// Height needs to be set, to allow for scrolling -
//this is the fixed container that will scroll
$('#content').height(iHeight - 10);
// Temporarily blow out the inner content, to FORCE ipad to scroll during resizing
// This is a timing issue where the inner content is not big enough during resize post orientation to require the outer DIV to scroll
$('#contentInner').height(1000);
// Set the heights back to something normal
// We have to "pause" long enough for the re-orientation resize to finish
window.setTimeout(delayFix, 10);
}
function delayFix()
{
var iHeight = $(window).height() - $("#header").height();
// Inner divs force the outer div to always have at least something to scroll. This makes the inner DIV always "rubber-band" and prevents
// the page from scrolling all over the place for no reason.
// The height of the inner guy needs to be AT LEAST as big as the container and actually a nip bigger to cause the
// scrollable area to 'rubber band' properly
$('#contentInner').height(iHeight + 20);
}