Ada*_*cho 5 html javascript jquery semantic-ui dropdown
滚动页面时,Semantic-UI出现问题。如果我开始滚动并触摸下拉菜单,那么将显示整个内容。
我只想在单击它时打开下拉列表,甚至连手指都没有。
尝试在移动设备上滚动此页面:http : //semantic-ui.com/modules/dropdown.html
小智 0
只需取消绑定touchstart事件即可,例如:
$('.ui.dropdown').unbind('touchstart');
Run Code Online (Sandbox Code Playgroud)