Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 html 页面中选择元素在 android 2.3.5 版本的手机上表现得很奇怪。我在包含三个下拉菜单的页面上实现了 i-scroll。当我选择最后一个下拉元素时,第一个元素值正在填充。我知道这些元素由于 i-scroll,overlay 下降了。给我关于这个问题的建议。
尝试将此代码添加到您的 javascript(其中 selectBoxID 是您的选择框的 ID)
var Select = document.getElementById('selectBoxID'); Select.addEventListener('touchstart', function(e) { e.stopPropagation(); }, false);
希望这可以帮助!