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.
我希望我的导航会在单击侧导航/子导航区域时向上滑动...我为此放置了下面的代码。但它不适用于 iPad。有人可以帮忙吗?
$(document).mouseup(function(){ $("#navLeft").slideUp(0); $("#navRight").slideUp(0); });
试试点击功能?
$(document).on('click',function(){ $("#navLeft").slideUp(0); $("#navRight").slideUp(0); });