如何在phoneGap(iphone)中停止窗口滚动?

时间:2012-03-30 13:28:08

标签: iphone jquery-mobile cordova scroll

我正在使用phoneGap和jQuery Mobile。当我使用<div></div>标签时,它可以正常工作,但在iPhone上它可以自动滚动。我怎么阻止这个?

1 个答案:

答案 0 :(得分:3)

如果你想阻止div滚动使用它:

<div id="container" ontouchmove="touchMove(event);"> content goes here </div>

和函数touchMove(event)

touchMove = function(event) { event.preventDefault(); }

希望这有效