アプリケーションで 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);
});
しかし、まだ選択ボックス(コンボボックス/ドロップダウン)が機能していません。助言がありますか?