2012-04-04 8 views
0

私のアプリケーションでiscroll4を使用しています。私はiScrollの問題に直面しているので、ドロップダウンリスト(コンボボックス)を同時に使用すると使用できなくなりました。 私はロード/使用後にコンボボックスが動作しないページ内のiscroll

$(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); 

}); 

http://groups.google.com/group/iscroll/browse_thread/thread/5b2fbad6aa667907#)彼らはここ を述べた方法を試してみました。しかし、まだ選択ボックス(コンボボックス/ドロップダウン)動作していません。助言がありますか?

答えて

関連する問題