加载/使用iscroll页面后组合框不工作

时间:2012-04-04 07:21:15

标签: combobox iscroll4

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

});

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

1 个答案:

答案 0 :(得分:1)

您好我从iScroll 4 not working with form <select> element iPhone Safari and Android browser得到了答案。感谢@comonitos。我用他的解决方案。