我正在使用phoneGap和jQuery Mobile。当我使用<div></div>
标签时,它可以正常工作,但在iPhone上它可以自动滚动。我怎么阻止这个?
答案 0 :(得分:3)
如果你想阻止div滚动使用它:
<div id="container" ontouchmove="touchMove(event);">
content goes here
</div>
和函数touchMove(event)
:
touchMove = function(event) {
event.preventDefault();
}
希望这有效