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

こんにちは私はiScroll4からフォーム<select>要素のiPhoneSafariとAndroidブラウザで動作しないという回答を得ました。@comonitosに感謝します。私は彼の解決策を使いました。

于 2012-04-04T14:16:20.510 に答える