在我的Jquery Mobile 1.4.5 app + Phonegap 3.6.3中,我有一个对话框页面,通过选择按钮打开,在iOS上,我无法滚动到列表的底部(它滚动在Android和桌面上都很好。
如果我在列表上滑动手指,则列表不会滚动。 该列表是动态填充的。
HTML:
<select id="chosenpro" data-theme="b" data-native-menu="false" data-position-to="window">
</select>
JS:
$(document).on('pagecreate','#welcome-page', function(){
$.when(dbReadyDeferred).then(function() {
initializeSelectButtons(); //function where the select options are populated dynamically
});
...
});
你能帮帮忙吗?