我在我的应用程序中使用 iscroll4。我遇到了 iScroll 的问题,它使下拉列表(组合框)在同时使用时无法使用。我尝试了他们在这里提到的方式(http://groups.google.com/group/iscroll/browse_thread/thread/5b2fbad6aa667907#)
$(document).ready(function() {
var destinations_scroll, accounts_scroll;
function loadingIscroll() {
accounts_scroll = new iScroll('accounts_container');
destinations_scroll = new iScroll('destinations_container', {
checkDOMChanges: true
});
setTimeout(function() {
destinations_scroll.refresh();
}, 0);
}
document.addEventListener('touchmove', function(e) {
if (e.target.tagName != "SELECT") {
e.preventDefault();
e.stopPropagation();
}
}, false);
addEventListener('DOMContentLoaded', loadingIscroll, false);
});
但仍然选择框(组合框/下拉菜单)不起作用。有什么建议么?