0

我正在尝试第一次使用 jquery mobile 创建一个应用程序。我已经在互联网上搜索了解决方案,但似乎对我的项目没有任何效果我找不到摆脱顶部和底部的橡皮筋的方法似乎不能解决这个问题。而且因为 iscroll 有相当多的限制并且不想使用它。

这是一张显示我的问题的照片 https://www.dropbox.com/s/6rini3swht160y4/Photo%201344.jpeg

谁能帮我?

4

2 回答 2

0

加载或创建 UIWebview 时,插入以下代码。

// bouncing-lock for webView contents
for (id subview in webView.subviews)
    if ([[subview class] isSubclassOfClass: [UIScrollView class]])
        ((UIScrollView *)subview).bounces = NO;
于 2013-04-11T08:34:13.893 回答
0

在你的 config.xml

<preference name="webviewbounce" value="false" />

见这里:https ://build.phonegap.com/docs/config-xml

于 2013-04-11T20:49:01.983 回答