> 백엔드 개발 > PHP 튜토리얼 > jquery listnav插件在ios上面点击两次才能执行

jquery listnav插件在ios上面点击两次才能执行

WBOY
풀어 주다: 2016-06-20 12:30:02
원래의
1096명이 탐색했습니다.

同上:jquery listnav插件在ios上面点击两次才能执行,安卓和pc浏览器都是点击一次就能切换,ios浏览器需要点击两次才有效果,用了中文排序。有大神有好的解决办法吗?

function bindHandlers() {				if (opts.showCounts) { $wrapper.mouseover(function() { setLetterCountTop(); }); }				if (opts.showCounts) { $('a', $letters).mouseover(function() { var left = $(this).position().left; var width = ($(this).outerWidth({ margin: true }) - 1) + 'px'; var count = getLetterCount(this); $letterCount.css({ left: left, width: width }).text(count).show(); }); $('a', $letters).mouseout(function() { $letterCount.hide(); }); }				$('a', $letters).click(function() {					$('a.ln-selected', $letters).removeClass('ln-selected'); var letter = $(this).attr('class').split(' ')[0]; if (letter == 'all') { $list.children().show(); $list.children('.ln-no-match').hide(); isAll = true; } else {						if (isAll) { $list.children().hide(); isAll = false; } else if (prevLetter != '') $list.children('.ln-' + prevLetter).hide(); var count = getLetterCount(this); if (count > 0) { $list.children('.ln-no-match').hide(); $list.children('.ln-' + letter).show(); }						else $list.children('.ln-no-match').show(); prevLetter = letter;					}					if ($.cookie && (opts.cookieName != null)) $.cookie(opts.cookieName, letter); $(this).addClass('ln-selected'); $(this).blur(); if (!firstClick && (opts.onClick != null)) opts.onClick(letter); else firstClick = false; return false;				});			}
로그인 후 복사


回复讨论(解决方案)

把if (opts.showCounts)这一段注释就可以了。

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿