我在一个网站上工作,但使用平板电脑的导航下拉菜单有问题。我曾尝试使用 Modernizr 使用非触摸事件,但没有运气。
问题是,在 Android 平板电脑上,当点击导航下拉菜单时,它会加载父页面,而不是按住下拉菜单。我遇到了这个修复http://osvaldas.info/drop-down-navigation-responsive-and-touch-friendly并且它修复了 Android 平板电脑上的问题,但它在导航上使用 iOs 平板电脑触发了两到三个点击。
修复 Android 问题的代码:
<script>
/*
AUTHOR: Osvaldas Valutis, www.osvaldas.info
*/
;(function( $, window, document, undefined )
{
$.fn.doubleTapToGo = function( params )
{
if( !( 'ontouchstart' in window ) &&
!navigator.msMaxTouchPoints &&
!navigator.userAgent.toLowerCase().match( /windows phone os 7/i ) ) return false;
this.each( function()
{
var curItem = false;
$( this ).on( 'click', function( e )
{
var item = $( this );
if( item[ 0 ] != curItem[ 0 ] )
{
e.preventDefault();
curItem = item;
}
});
$( document ).on( 'click touchstart MSPointerDown', function( e )
{
var resetItem = true,
parents = $( e.target ).parents();
for( var i = 0; i < parents.length; i++ )
if( parents[ i ] == curItem[ 0 ] )
resetItem = false;
if( resetItem )
curItem = false;
});
});
return this;
};
})( jQuery, window, document );</script>
And this: <script>
$( function() { $( '#second-menu li:has(ul)' ).doubleTapToGo(); }); </script>
我正在开发的网站是 www.bpcdev.co.uk 供您查看。如果您能告诉我是否有更多适用于 iOS 的修复程序 - 导航下拉菜单上的三个水龙头 - 请告诉我。先谢谢了!:)