Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以防止 uiwebview 滚动,但也有可以滚动的 div?
我有一个 jquery 导航栏,并且想要一个带有许多图像的可滚动 div。我希望能够在导航栏保持固定的情况下滚动浏览图像。
最初整个 webview 都在移动,所以我用它来停止所有滚动。
webView.scrollView.scrollEnabled = 否;
但现在我希望 div 仍然可以滚动。我将 div 样式设置为
overflow:auto
但它似乎不动。
我将错误的 div 设置为溢出:自动。所以它在设置正确的滚动后起作用。