0

我在我的应用程序中使用 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);

});

但仍然选择框(组合框/下拉菜单)不起作用。有什么建议么?

4

1 回答 1

1

嗨,我从iScroll 4 得到了一个答案,它不能使用表单 <select> 元素 iPhone Safari 和 Android 浏览器。感谢@comonitos。我使用了他的解决方案。

于 2012-04-04T14:16:20.510 回答